Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/02/2024 07:12:25 PM (2 years ago)
Author:
espellcaste
Message:

WPCS: Part VIII: miscellaneous fixes for some of the files of the core component.

Follow-up to [13883], [13886], [13887], [13888], [13891], [13892], [13893]

See #9164 and #7228

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/classes/class-bp-core-nav-item.php

    r11290 r13900  
    11<?php
     2/**
     3 * Core component class.
     4 *
     5 * @package BuddyPress
     6 * @subpackage Core
     7 * @since 2.6.0
     8 */
    29
    310// Exit if accessed directly.
     
    1017 */
    1118class BP_Core_Nav_Item extends ArrayObject {
     19
     20        /**
     21         * Constructor.
     22         *
     23         * @param array $data Data to populate the nav item.
     24         */
    1225        public function __construct( $data ) {
    1326                parent::__construct( $data, ArrayObject::ARRAY_AS_PROPS );
Note: See TracChangeset for help on using the changeset viewer.