Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/02/2024 01:06:10 AM (4 months ago)
Author:
espellcaste
Message:

PHPDoc: remove superfluous comments from boolean returns.

See #9164

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-members/bp-members-functions.php

    r13882 r13890  
    698698 *                              performed this cleanup independently, as when hooked
    699699 *                              to 'make_spam_user'.
    700  * @return bool True on success, false on failure.
     700 * @return bool
    701701 */
    702702function bp_core_process_spammer_status( $user_id, $status, $do_wp_cleanup = true ) {
     
    10721072 * @param int    $user_id Optional. ID of the user being updated.
    10731073 * @param string $time    Optional. Time of last activity, in 'Y-m-d H:i:s' format.
    1074  * @return bool True on success, false on failure.
     1074 * @return bool
    10751075 */
    10761076function bp_update_user_last_activity( $user_id = 0, $time = '' ) {
     
    12471247 * @param int $user_id Optional. ID of the user to be deleted. Default: the
    12481248 *                     logged-in user.
    1249  * @return bool True on success, false on failure.
     1249 * @return bool
    12501250 */
    12511251function bp_core_delete_account( $user_id = 0 ) {
     
    13441344 *
    13451345 * @param int $user_id ID of the user who is about to be deleted.
    1346  * @return bool True on success, false on failure.
     1346 * @return bool
    13471347 */
    13481348function bp_core_delete_avatar_on_user_delete( $user_id ) {
     
    34463446 *                                 sent now. Default: false.
    34473447 * }
    3448  * @return bool True on success, false on failure.
     3448 * @return bool
    34493449 */
    34503450function bp_members_invitations_invite_user( $args = array() ) {
     
    34943494 *
    34953495 * @param int $id ID of the invitation to resend.
    3496  * @return bool True on success, false on failure.
     3496 * @return bool
    34973497 */
    34983498function bp_members_invitation_resend_by_id( $id = 0 ) {
Note: See TracChangeset for help on using the changeset viewer.