Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
10/11/2015 04:27:50 PM (10 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-members/bp-members-template.php

    r10157 r10248  
    214214     * The loop iterator.
    215215     *
    216      * @access public
    217216     * @var int
    218217     */
     
    222221     * The number of members returned by the paged query.
    223222     *
    224      * @access public
    225223     * @var int
    226224     */
     
    230228     * Array of members located by the query.
    231229     *
    232      * @access public
    233230     * @var array
    234231     */
     
    238235     * The member object currently being iterated on.
    239236     *
    240      * @access public
    241237     * @var object
    242238     */
     
    246242     * A flag for whether the loop is currently being iterated.
    247243     *
    248      * @access public
    249244     * @var bool
    250245     */
     
    254249     * The type of member being requested. Used for ordering results.
    255250     *
    256      * @access public
    257251     * @var string
    258252     */
     
    262256     * The unique string used for pagination queries.
    263257     *
    264      * @access public
    265258     * @var string
    266259     */
     
    270263     * The page number being requested.
    271264     *
    272      * @access public
    273265     * @var string
    274266     */
     
    278270     * The number of items being requested per page.
    279271     *
    280      * @access public
    281272     * @var string
    282273     */
     
    286277     * An HTML string containing pagination links.
    287278     *
    288      * @access public
    289279     * @var string
    290280     */
     
    294284     * The total number of members matching the query parameters.
    295285     *
    296      * @access public
    297286     * @var int
    298287     */
Note: See TracChangeset for help on using the changeset viewer.