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-core/classes/class-bp-user-query.php

    r10108 r10248  
    8282     * List of found users and their respective data.
    8383     *
    84      * @access public To allow components to manipulate them.
    8584     * @since 1.7.0
    8685     * @var array
     
    9190     * Total number of found users for the current query.
    9291     *
    93      * @access public To allow components to manipulate it.
    9492     * @since 1.7.0
    9593     * @var int
     
    10098     * List of found user IDs.
    10199     *
    102      * @access public To allow components to manipulate it.
    103100     * @since 1.7.0
    104101     * @var array
     
    109106     * SQL clauses for the user ID query.
    110107     *
    111      * @access public To allow components to manipulate it.
    112108     * @since 1.7.0
    113109     * @var array
     
    119115     *
    120116     * @since 2.2.0
    121      * @access public
    122117     * @var string
    123118     */
     
    135130     * Standard response when the query should not return any rows.
    136131     *
    137      * @access protected
    138132     * @since 1.7.0
    139133     * @var string
Note: See TracChangeset for help on using the changeset viewer.