Docs: Add a missing file header to wp-includes/class-wp-metadata-lazyloader.php, introduced in [36566].

See #35816. See #35986.

Built from https://develop.svn.wordpress.org/trunk@36897


git-svn-id: http://core.svn.wordpress.org/trunk@36865 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-03-09 16:52:27 +00:00
parent e032560e6b
commit a1b18a3ae6
2 changed files with 9 additions and 2 deletions

View File

@ -1,7 +1,14 @@
<?php <?php
/**
* Lazy-loader for WordPress object metadata
*
* @package WordPress
* @subpackage Meta
* @since 4.5.0
*/
/** /**
* Lazyloader for object metadata. * Core class used for lazy-loading object metadata.
* *
* When loading many objects of a given type, such as posts in a WP_Query loop, it often makes * When loading many objects of a given type, such as posts in a WP_Query loop, it often makes
* sense to prime various metadata caches at the beginning of the loop. This means fetching all * sense to prime various metadata caches at the beginning of the loop. This means fetching all

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-beta2-36896'; $wp_version = '4.5-beta2-36897';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.