Skip to:
Content

BuddyPress.org


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

    r10126 r10248  
    112112     * The loop iterator.
    113113     *
    114      * @access public
    115114     * @var int
    116115     */
     
    120119     * The number of blogs returned by the paged query.
    121120     *
    122      * @access public
    123121     * @var int
    124122     */
     
    128126     * Array of blogs located by the query..
    129127     *
    130      * @access public
    131128     * @var array
    132129     */
     
    136133     * The blog object currently being iterated on.
    137134     *
    138      * @access public
    139135     * @var object
    140136     */
     
    144140     * A flag for whether the loop is currently being iterated.
    145141     *
    146      * @access public
    147142     * @var bool
    148143     */
     
    152147     * The page number being requested.
    153148     *
    154      * @access public
    155149     * @var int
    156150     */
     
    160154     * The number of items being requested per page.
    161155     *
    162      * @access public
    163156     * @var int
    164157     */
     
    168161     * An HTML string containing pagination links.
    169162     *
    170      * @access public
    171163     * @var string
    172164     */
     
    176168     * The total number of blogs matching the query parameters.
    177169     *
    178      * @access public
    179170     * @var int
    180171     */
Note: See TracChangeset for help on using the changeset viewer.