Add @access annotations to methods that have no doc block in wp-admin/includes/*.

Makes it easier to search for no doc blocks via `}[\n\t\r ]+(protected|private|public)`.

See #32444.

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


git-svn-id: http://core.svn.wordpress.org/trunk@32626 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor
2015-05-29 21:32:24 +00:00
parent b3e0cfd25d
commit 6a08b00632
16 changed files with 191 additions and 9 deletions

View File

@@ -101,6 +101,11 @@ class _WP_List_Table_Compat extends WP_List_Table {
}
}
/**
* @access protected
*
* @return array
*/
protected function get_column_info() {
$columns = get_column_headers( $this->_screen );
$hidden = get_hidden_columns( $this->_screen );
@@ -109,6 +114,11 @@ class _WP_List_Table_Compat extends WP_List_Table {
return array( $columns, $hidden, $sortable );
}
/**
* @access public
*
* @return array
*/
public function get_columns() {
return $this->_columns;
}