Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/11/2015 04:27:50 PM (11 years ago)
Author:
djpaul
Message:

phpdoc: remove obsolete @access public|protected|private statements.

These should only be used on procedural functions that, for legacy
reasons, pretend they are private by prefacing their name with an
underscore.

As modern PHP parsers and IDEs use reflections to figure out the
visibility scope of methods and properties by looking at the actual
code, there’s also no bonus in keeping these purely for documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-activity/classes/class-bp-activity-query.php

    r10077 r10248  
    2525         *
    2626         * @since 2.2.0
    27          * @access public
    2827         * @var array
    2928         */
     
    3433         *
    3534         * @since 2.2.0
    36          * @access public
    3735         * @var string
    3836         */
     
    4543         *
    4644         * @since 2.2.0
    47          * @access public
    4845         * @var array
    4946         */
     
    8885         *
    8986         * @since 2.2.0
    90          * @access public
    9187         *
    9288         * @param string $alias An existing table alias that is compatible with the current query clause.
     
    113109         *
    114110         * @since 2.2.0
    115          * @access protected
    116111         *
    117112         * @param  array $clause       Array of arguments belonging to the clause.
     
    226221         *
    227222         * @since 2.2.0
    228          * @access protected
    229223         *
    230224         * @param array $query Clause to check.
     
    243237         *
    244238         * @since 2.2.0
    245          * @access public
    246239         *
    247240         * @param string $column The user-supplied column name.
Note: See TracChangeset for help on using the changeset viewer.