From c8b530f0884789fa882306a197bf37464ce30b84 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 26 Feb 2016 17:04:27 +0000 Subject: [PATCH] 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 --- wp-includes/class-wp-theme.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-theme.php b/wp-includes/class-wp-theme.php index a765655363..cae0e1616d 100644 --- a/wp-includes/class-wp-theme.php +++ b/wp-includes/class-wp-theme.php @@ -343,7 +343,8 @@ final class WP_Theme implements ArrayAccess { * * @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 ) { static $properties = array( diff --git a/wp-includes/version.php b/wp-includes/version.php index 2d0bdb9a75..9a0338f55d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.