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.


git-svn-id: https://develop.svn.wordpress.org/trunk@32044 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes 2015-04-05 16:10:53 +00:00
parent 2b774bf447
commit 8f8a9e7350
1 changed files with 2 additions and 1 deletions

View File

@ -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;