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-groups/bp-groups-template.php

    r10240 r10248  
    101101     * The loop iterator.
    102102     *
    103      * @access public
    104103     * @var int
    105104     */
     
    109108     * The number of groups returned by the paged query.
    110109     *
    111      * @access public
    112110     * @var int
    113111     */
     
    117115     * Array of groups located by the query.
    118116     *
    119      * @access public
    120117     * @var array
    121118     */
     
    125122     * The group object currently being iterated on.
    126123     *
    127      * @access public
    128124     * @var object
    129125     */
     
    133129     * A flag for whether the loop is currently being iterated.
    134130     *
    135      * @access public
    136131     * @var bool
    137132     */
     
    141136     * The page number being requested.
    142137     *
    143      * @access public
    144138     * @var string
    145139     */
     
    149143     * The number of items being requested per page.
    150144     *
    151      * @access public
    152145     * @var string
    153146     */
     
    157150     * An HTML string containing pagination links.
    158151     *
    159      * @access public
    160152     * @var string
    161153     */
     
    165157     * The total number of groups matching the query parameters.
    166158     *
    167      * @access public
    168159     * @var int
    169160     */
     
    173164     * Whether the template loop is for a single group page.
    174165     *
    175      * @access public
    176166     * @var bool
    177167     */
     
    181171     * Field to sort by.
    182172     *
    183      * @access public
    184173     * @var string
    185174     */
     
    189178     * Sort order.
    190179     *
    191      * @access public
    192180     * @var string
    193181     */
Note: See TracChangeset for help on using the changeset viewer.