Docs: Remove @access notations from method DocBlocks in wp-includes/* classes.

Prior to about 2013, many class methods lacked even access modifiers which made the `@access` notations that much more useful. Now that we've gotten to a point where the codebase is more mature from a maintenance perspective and we can finally remove these notations. Notable exceptions to this change include standalone functions notated as private as well as some classes still considered to represent "private" APIs.

See #41452.


git-svn-id: https://develop.svn.wordpress.org/trunk@41162 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2017-07-27 00:40:27 +00:00
parent 829139ba1a
commit b4d81bd654
135 changed files with 2 additions and 1906 deletions

View File

@@ -22,7 +22,6 @@ class WP_Http_Curl {
* Temporary header storage for during requests.
*
* @since 3.2.0
* @access private
* @var string
*/
private $headers = '';
@@ -31,7 +30,6 @@ class WP_Http_Curl {
* Temporary body storage for during requests.
*
* @since 3.6.0
* @access private
* @var string
*/
private $body = '';
@@ -40,7 +38,6 @@ class WP_Http_Curl {
* The maximum amount of data to receive from the remote server.
*
* @since 3.6.0
* @access private
* @var int
*/
private $max_body_length = false;
@@ -49,7 +46,6 @@ class WP_Http_Curl {
* The file resource used for streaming to file.
*
* @since 3.6.0
* @access private
* @var resource
*/
private $stream_handle = false;
@@ -58,7 +54,6 @@ class WP_Http_Curl {
* The total bytes written in the current request.
*
* @since 4.1.0
* @access private
* @var int
*/
private $bytes_written_total = 0;
@@ -66,7 +61,6 @@ class WP_Http_Curl {
/**
* Send a HTTP request to a URI using cURL extension.
*
* @access public
* @since 2.7.0
*
* @param string $url The request URL.
@@ -304,7 +298,6 @@ class WP_Http_Curl {
* for temporary storage
*
* @since 3.2.0
* @access private
*
* @param resource $handle cURL handle.
* @param string $headers cURL request headers.
@@ -323,7 +316,6 @@ class WP_Http_Curl {
* `$data` passed in will cause cURL to abort the request with `CURLE_WRITE_ERROR`.
*
* @since 3.6.0
* @access private
*
* @param resource $handle cURL handle.
* @param string $data cURL request body.