Docs: Remove @access notations from method DocBlocks in wp-admin/* 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@41161 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Drew Jaynes
2017-07-27 00:39:34 +00:00
parent 609aaef919
commit 829139ba1a
44 changed files with 1 additions and 527 deletions
@@ -21,7 +21,6 @@ class WP_Plugins_List_Table extends WP_List_Table {
* Constructor.
*
* @since 3.1.0
* @access public
*
* @see WP_List_Table::__construct() for more information on default arguments.
*
@@ -346,7 +345,6 @@ class WP_Plugins_List_Table extends WP_List_Table {
* Displays the search box.
*
* @since 4.6.0
* @access public
*
* @param string $text The 'submit' button label.
* @param string $input_id ID attribute value for the search input field.
@@ -864,7 +862,6 @@ class WP_Plugins_List_Table extends WP_List_Table {
* Gets the name of the primary column for this specific list table.
*
* @since 4.3.0
* @access protected
*
* @return string Unalterable name for the primary column, in this case, 'name'.
*/