Skip to:
Content

bbPress.org


Ignore:
Timestamp:
06/16/2017 09:20:52 PM (7 years ago)
Author:
johnjamesjacoby
Message:

Documentation: Remove all @uses usages.

Per the WordPress inline documentation standards:

the @uses tag is not recommended to be used to indicate a used-by relationship, as this information can be derived through other means. These tags also are very likely to become out-of-date as our functions change over time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/core/cache.php

    r6414 r6573  
    114114     *
    115115     * @since 2.1.0 bbPress (r4011)
    116      *
    117      * @uses wp_suspend_cache_invalidation()
    118116     */
    119117    public function restore_cache_invalidation() {
     
    131129 *
    132130 * @since 2.1.0 bbPress (r4040)
    133  *
    134  * @uses do_action() Calls 'bbp_clean_post_cache' on $id
    135131 * @since 2.6.0 bbPress (r6053) Introduced the `$post_id` parameter.
    136132 *
    137133 * @param int     $post_id The post id.
    138134 * @param WP_Post $post    The WP_Post object.
    139  *
    140  * @uses get_post() To get the post object.
    141  * @uses bbp_get_forum_post_type() To get the forum post type.
    142  * @uses bbp_get_topic_post_type() To get the topic post type.
    143  * @uses bbp_get_reply_post_type() To get the reply post type.
    144  * @uses wp_cache_delete() To delete the cache item.
    145  * @uses clean_object_term_cache() To clean the term cache.
    146  * @uses bbp_clean_post_cache() Recursion.
    147135 */
    148136function bbp_clean_post_cache( $post_id = null, $post = null ) {
Note: See TracChangeset for help on using the changeset viewer.