From 156e3d14edefab173b4e482cbfbcf1758881d0f7 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 5 Apr 2015 16:11:27 +0000 Subject: [PATCH] Add a missing `@access` tag to the DocBlock for the `WP_Meta_Query->$clauses` property. Also adds a missing return description for `WP_Meta_Query::get_clauses()`. See [31312]. See #31888. Built from https://develop.svn.wordpress.org/trunk@32044 git-svn-id: http://core.svn.wordpress.org/trunk@32023 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/meta.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/meta.php b/wp-includes/meta.php index f90312304d..b57e761f46 100644 --- a/wp-includes/meta.php +++ b/wp-includes/meta.php @@ -937,6 +937,7 @@ class WP_Meta_Query { * A flat list of clauses, keyed by clause 'name'. * * @since 4.2.0 + * @access protected * @var array */ protected $clauses = array(); @@ -1492,7 +1493,7 @@ class WP_Meta_Query { * @since 4.2.0 * @access public * - * @return array + * @return array Meta clauses. */ public function get_clauses() { return $this->clauses; diff --git a/wp-includes/version.php b/wp-includes/version.php index dd1993bfcb..ee6f4b70eb 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta4-32043'; +$wp_version = '4.2-beta4-32044'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.