Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/26/2021 12:53:27 AM (5 years ago)
Author:
espellcaste
Message:

Making PHPDoc Improvements to the BP Messages (component) files.

Also, adding several minor PHP changes.

See #8553

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-messages/classes/class-bp-messages-notices-admin.php

    r12724 r13096  
    33 * BuddyPress messages component Site-wide Notices admin screen.
    44 *
    5  *
    65 * @package BuddyPress
    7  * @subpackage Messages
     6 * @subpackage MessagesClasses
    87 * @since 3.0.0
    98 */
     
    1211defined( 'ABSPATH' ) || exit;
    1312
     13/**
     14 * BuddyPress Notices Admin class.
     15 */
    1416class BP_Messages_Notices_Admin {
    1517
     
    3436         *
    3537         * @since 3.0.0
    36          * @var object
     38         * @var BP_Messages_Notices_List_Table|string
    3739         */
    3840        public $list_table = '';
    3941
    40 
    41         /**
    42      * Create a new instance or access the current instance of this class.
    43      *
    44      * @since 3.0.0
    45      */
     42        /**
     43         * Create a new instance or access the current instance of this class.
     44         *
     45         * @global BuddyPress $bp The one true BuddyPress instance.
     46         *
     47         * @since 3.0.0
     48         *
     49         * @return BP_Messages_Notices_Admin
     50         */
    4651        public static function register_notices_admin() {
    4752
     
    6065
    6166        /**
    62          * Constructor method.
     67         * Constructor.
    6368         *
    6469         * @since 3.0.0
Note: See TracChangeset for help on using the changeset viewer.