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
This commit is contained in:
parent
8652208375
commit
156e3d14ed
|
@ -937,6 +937,7 @@ class WP_Meta_Query {
|
||||||
* A flat list of clauses, keyed by clause 'name'.
|
* A flat list of clauses, keyed by clause 'name'.
|
||||||
*
|
*
|
||||||
* @since 4.2.0
|
* @since 4.2.0
|
||||||
|
* @access protected
|
||||||
* @var array
|
* @var array
|
||||||
*/
|
*/
|
||||||
protected $clauses = array();
|
protected $clauses = array();
|
||||||
|
@ -1492,7 +1493,7 @@ class WP_Meta_Query {
|
||||||
* @since 4.2.0
|
* @since 4.2.0
|
||||||
* @access public
|
* @access public
|
||||||
*
|
*
|
||||||
* @return array
|
* @return array Meta clauses.
|
||||||
*/
|
*/
|
||||||
public function get_clauses() {
|
public function get_clauses() {
|
||||||
return $this->clauses;
|
return $this->clauses;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue