Make WordPress Core


Ignore:
Timestamp:
07/27/2017 12:39:34 AM (7 years ago)
Author:
DrewAPicture
Message:

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.

File:
1 edited

Legend:

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

    r38457 r41161  
    2525     *
    2626     * @since 3.1.0
    27      * @access public
    2827     *
    2928     * @see WP_List_Table::__construct() for more information on default arguments.
     
    4847
    4948    /**
    50      * @access public
    5149     */
    5250    public function prepare_items() {
     
    8482
    8583    /**
    86      * @access public
    8784     */
    8885    public function no_items() {
     
    131128
    132129    /**
    133      * @access public
    134130     */
    135131    public function display() {
     
    155151
    156152    /**
    157      * @access public
    158153     */
    159154    public function display_rows_or_placeholder() {
     
    168163
    169164    /**
    170      * @access public
    171165     */
    172166    public function display_rows() {
     
    287281     *
    288282     * @since 3.4.0
    289      * @access public
    290283     *
    291284     * @param array $extra_args
Note: See TracChangeset for help on using the changeset viewer.