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
@@ -18,7 +18,6 @@ class WP_Feed_Cache_Transient {
* Holds the transient name.
*
* @since 2.8.0
* @access public
* @var string
*/
public $name;
@@ -27,7 +26,6 @@ class WP_Feed_Cache_Transient {
* Holds the transient mod name.
*
* @since 2.8.0
* @access public
* @var string
*/
public $mod_name;
@@ -38,7 +36,6 @@ class WP_Feed_Cache_Transient {
* Defaults to 43200 seconds (12 hours).
*
* @since 2.8.0
* @access public
* @var int
*/
public $lifetime = 43200;
@@ -48,7 +45,6 @@ class WP_Feed_Cache_Transient {
*
* @since 2.8.0
* @since 3.2.0 Updated to use a PHP5 constructor.
* @access public
*
* @param string $location URL location (scheme is used to determine handler).
* @param string $filename Unique identifier for cache object.
@@ -74,7 +70,6 @@ class WP_Feed_Cache_Transient {
* Sets the transient.
*
* @since 2.8.0
* @access public
*
* @param SimplePie $data Data to save.
* @return true Always true.
@@ -93,7 +88,6 @@ class WP_Feed_Cache_Transient {
* Gets the transient.
*
* @since 2.8.0
* @access public
*
* @return mixed Transient value.
*/
@@ -105,7 +99,6 @@ class WP_Feed_Cache_Transient {
* Gets mod transient.
*
* @since 2.8.0
* @access public
*
* @return mixed Transient value.
*/
@@ -117,7 +110,6 @@ class WP_Feed_Cache_Transient {
* Sets mod transient.
*
* @since 2.8.0
* @access public
*
* @return bool False if value was not set and true if value was set.
*/
@@ -129,7 +121,6 @@ class WP_Feed_Cache_Transient {
* Deletes transients.
*
* @since 2.8.0
* @access public
*
* @return true Always true.
*/