From cfc503e9213419d71a617614b94bdc21ee0e206c Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Thu, 25 Feb 2016 21:26:26 +0000 Subject: [PATCH] Docs: Correct the possible return types for `WP_Dependencies::query()`. See #32246 Built from https://develop.svn.wordpress.org/trunk@36713 git-svn-id: http://core.svn.wordpress.org/trunk@36680 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class.wp-dependencies.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class.wp-dependencies.php b/wp-includes/class.wp-dependencies.php index 2ba28b024b..31bc84de22 100644 --- a/wp-includes/class.wp-dependencies.php +++ b/wp-includes/class.wp-dependencies.php @@ -342,7 +342,7 @@ class WP_Dependencies { * * @param string $handle Name of the item. Should be unique. * @param string $list Property name of list array. - * @return bool Found, or object Item data. + * @return bool|_WP_Dependency Found, or object Item data. */ public function query( $handle, $list = 'registered' ) { switch ( $list ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 8531ab1a1e..6254631041 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-beta1-36712'; +$wp_version = '4.5-beta1-36713'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.