Docs: Add missing parameter and return descriptions to the DocBlock for `WP_Theme::__isset()`.

See #32246.

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


git-svn-id: http://core.svn.wordpress.org/trunk@36701 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-02-26 17:04:27 +00:00
parent d81ebb08fb
commit c8b530f088
2 changed files with 3 additions and 2 deletions

View File

@ -343,7 +343,8 @@ final class WP_Theme implements ArrayAccess {
* *
* @staticvar array $properties * @staticvar array $properties
* *
* @return bool * @param string $offset Property to check if set.
* @return bool Whether the given property is set.
*/ */
public function __isset( $offset ) { public function __isset( $offset ) {
static $properties = array( static $properties = array(

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-beta1-36733'; $wp_version = '4.5-beta1-36734';
/** /**
* 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.