Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
11/24/2022 09:33:11 PM (2 years ago)
Author:
imath
Message:

Replace usage of $this in @param tags with a meaningful variable name

Props devutpol, espellcaste

Fixes #8611

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-groups/classes/class-bp-groups-group.php

    r13355 r13372  
    288288         * @since 1.0.0
    289289         *
    290          * @param BP_Groups_Group $this Current instance of the group item being saved. Passed by reference.
     290         * @param BP_Groups_Group $group Current instance of the group item being saved. Passed by reference.
    291291         */
    292292        do_action_ref_array( 'groups_group_before_save', array( &$this ) );
     
    372372         * @since 1.0.0
    373373         *
    374          * @param BP_Groups_Group $this Current instance of the group item that was saved. Passed by reference.
     374         * @param BP_Groups_Group $group Current instance of the group item that was saved. Passed by reference.
    375375         */
    376376        do_action_ref_array( 'groups_group_after_save', array( &$this ) );
     
    412412         * @since 1.2.0
    413413         *
    414          * @param BP_Groups_Group $this     Current instance of the group item being deleted. Passed by reference.
     414         * @param BP_Groups_Group $group    Current instance of the group item being deleted. Passed by reference.
    415415         * @param array           $user_ids Array of user IDs that were members of the group.
    416416         */
Note: See TracChangeset for help on using the changeset viewer.