Docs: Add missing @access tags to DocBlocks for WP class methods and properties.

See #32246.

Built from https://develop.svn.wordpress.org/trunk@36365


git-svn-id: http://core.svn.wordpress.org/trunk@36332 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-01-20 18:19:27 +00:00
parent cee318ed81
commit 1e1d1375b0
2 changed files with 22 additions and 3 deletions

View File

@ -23,6 +23,7 @@ class WP {
* Long list of private query variables.
*
* @since 2.0.0
* @access public
* @var array
*/
public $private_query_vars = array( 'offset', 'posts_per_page', 'posts_per_archive_page', 'showposts', 'nopaging', 'post_type', 'post_status', 'category__in', 'category__not_in', 'category__and', 'tag__in', 'tag__not_in', 'tag__and', 'tag_slug__in', 'tag_slug__and', 'tag_id', 'post_mime_type', 'perm', 'comments_per_page', 'post__in', 'post__not_in', 'post_parent', 'post_parent__in', 'post_parent__not_in', 'title' );
@ -31,6 +32,7 @@ class WP {
* Extra query variables set by the user.
*
* @since 2.1.0
* @access public
* @var array
*/
public $extra_query_vars = array();
@ -39,6 +41,7 @@ class WP {
* Query variables for setting up the WordPress Query Loop.
*
* @since 2.0.0
* @access public
* @var array
*/
public $query_vars;
@ -47,6 +50,7 @@ class WP {
* String parsed to set the query variables.
*
* @since 2.0.0
* @access public
* @var string
*/
public $query_string;
@ -55,6 +59,7 @@ class WP {
* Permalink or requested URI.
*
* @since 2.0.0
* @access public
* @var string
*/
public $request;
@ -63,6 +68,7 @@ class WP {
* Rewrite rule the request matched.
*
* @since 2.0.0
* @access public
* @var string
*/
public $matched_rule;
@ -71,6 +77,7 @@ class WP {
* Rewrite query the request matched.
*
* @since 2.0.0
* @access public
* @var string
*/
public $matched_query;
@ -79,6 +86,7 @@ class WP {
* Whether already did the permalink.
*
* @since 2.0.0
* @access public
* @var bool
*/
public $did_permalink = false;
@ -87,6 +95,7 @@ class WP {
* Add name to list of public query variables.
*
* @since 2.1.0
* @access public
*
* @param string $qv Query variable name.
*/
@ -99,6 +108,7 @@ class WP {
* Remove name from list of public query variables.
*
* @since 4.5.0
* @access public
*
* @param string $name Query variable name.
*/
@ -110,6 +120,7 @@ class WP {
* Set the value of a query variable.
*
* @since 2.3.0
* @access public
*
* @param string $key Query variable name.
* @param mixed $value Query variable value.
@ -125,6 +136,7 @@ class WP {
* filters and actions that can be used to further manipulate the result.
*
* @since 2.0.0
* @access public
*
* @global WP_Rewrite $wp_rewrite
*
@ -381,6 +393,7 @@ class WP {
*
* @since 2.0.0
* @since 4.4.0 `X-Pingback` header is added conditionally after posts have been queried in handle_404().
* @access public
*/
public function send_headers() {
$headers = array();
@ -503,6 +516,7 @@ class WP {
* use the 'request' filter instead.
*
* @since 2.0.0
* @access public
*/
public function build_query_string() {
$this->query_string = '';
@ -536,6 +550,9 @@ class WP {
* be taken when naming global variables that might interfere with the
* WordPress environment.
*
* @since 2.0.0
* @access public
*
* @global WP_Query $wp_query
* @global string $query_string Query string for the loop.
* @global array $posts The found posts.
@ -544,8 +561,6 @@ class WP {
* @global int $more Only set, if single page or post.
* @global int $single If single page or post. Only set, if single page or post.
* @global WP_User $authordata Only set, if author archive.
*
* @since 2.0.0
*/
public function register_globals() {
global $wp_query;
@ -573,6 +588,7 @@ class WP {
* Set up the current user.
*
* @since 2.0.0
* @access public
*/
public function init() {
wp_get_current_user();
@ -582,6 +598,7 @@ class WP {
* Set up the Loop based on the query variables.
*
* @since 2.0.0
* @access public
*
* @global WP_Query $wp_the_query
*/
@ -605,6 +622,7 @@ class WP {
* a 404 so that canonical redirection logic can kick in.
*
* @since 2.0.0
* @access public
*
* @global WP_Query $wp_query
*/
@ -682,6 +700,7 @@ class WP {
* object.
*
* @since 2.0.0
* @access public
*
* @param string|array $query_args Passed to {@link parse_request()}
*/

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.5-alpha-36364';
$wp_version = '4.5-alpha-36365';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.