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

See #35816. See #35986.


git-svn-id: https://develop.svn.wordpress.org/trunk@36897 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2016-03-09 16:51:15 +00:00
parent 79c92e605a
commit 32f8a9b345
1 changed files with 8 additions and 1 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