Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
01/20/2023 11:51:50 PM (23 months ago)
Author:
espellcaste
Message:

PHPDoc: removes the @return in the bp_core_clear_cache function since it has no returned value, only side effect.

See #85553

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-core/bp-core-cache.php

    r13398 r13407  
    2727     *
    2828     * @see prune_super_cache()
    29      *
    30      * @return integer
    3129     */
    3230    function bp_core_clear_cache() {
     
    4240            do_action( 'bp_core_clear_cache' );
    4341
    44             return prune_super_cache( $cache_path, true );
     42            prune_super_cache( $cache_path, true );
    4543        }
    4644    }
Note: See TracChangeset for help on using the changeset viewer.