Make WordPress Core


Ignore:
Timestamp:
05/29/2015 09:31:56 PM (10 years ago)
Author:
wonderboymusic
Message:

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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/list-table.php

    r32642 r32656  
    102102    }
    103103
     104    /**
     105     * @access protected
     106     *
     107     * @return array
     108     */
    104109    protected function get_column_info() {
    105110        $columns = get_column_headers( $this->_screen );
     
    110115    }
    111116
     117    /**
     118     * @access public
     119     *
     120     * @return array
     121     */
    112122    public function get_columns() {
    113123        return $this->_columns;
Note: See TracChangeset for help on using the changeset viewer.