Make WordPress Core


Ignore:
Timestamp:
09/21/2019 05:40:58 PM (6 years ago)
Author:
johnbillion
Message:

Docs: Docblock corrections and improvements, mostly related to various pre_* filters.

See #47110

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/ms-functions.php

    r45932 r46232  
    24272427
    24282428/**
    2429  * Returns the space used by the current blog.
     2429 * Returns the space used by the current site.
    24302430 *
    24312431 * @since 3.5.0
    24322432 *
    2433  * @return int Used space in megabytes
     2433 * @return int Used space in megabytes.
    24342434 */
    24352435function get_space_used() {
    24362436    /**
    2437      * Filters the amount of storage space used by the current site.
     2437     * Filters the amount of storage space used by the current site, in megabytes.
    24382438     *
    24392439     * @since 3.5.0
    24402440     *
    2441      * @param int|bool $space_used The amount of used space, in megabytes. Default false.
     2441     * @param int|false $space_used The amount of used space, in megabytes. Default false.
    24422442     */
    24432443    $space_used = apply_filters( 'pre_get_space_used', false );
Note: See TracChangeset for help on using the changeset viewer.