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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user