Make WordPress Core

Changeset 48099


Ignore:
Timestamp:
06/19/2020 10:25:47 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Misc improvements to inline docs.

See #49572.

Location:
trunk/src/wp-includes
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-object-cache.php

    r47944 r48099  
    309309     *
    310310     * @param array  $keys  Array of keys under which the cache contents are stored.
    311      * @param string $group Optional. Where the cache contents are grouped. Default empty.
     311     * @param string $group Optional. Where the cache contents are grouped. Default 'default'.
    312312     * @param bool   $force Optional. Whether to force an update of the local cache
    313313     *                      from the persistent cache. Default false.
  • trunk/src/wp-includes/formatting.php

    r48072 r48099  
    936936 *
    937937 * @since 1.2.2
    938  * @since 5.5.0 `$quote_style` also accepts '`ENT_XML1`.
     938 * @since 5.5.0 `$quote_style` also accepts `ENT_XML1`.
    939939 * @access private
    940940 *
  • trunk/src/wp-includes/media.php

    r48067 r48099  
    15871587 *
    15881588 * @param string $tag_name The tag name.
    1589  * @param string $context Additional context, like the current filter name or the function name from where this was called.
     1589 * @param string $context  Additional context, like the current filter name or the function name from where this was called.
    15901590 * @return bool Whether to add the attribute.
    15911591 */
     
    16001600     * @since 5.5.0
    16011601     *
    1602      * @param bool   $default Default value.
     1602     * @param bool   $default  Default value.
    16031603     * @param string $tag_name The tag name.
    1604      * @param string $context Additional context, like the current filter name or the function name from where this was called.
     1604     * @param string $context  Additional context, like the current filter name or the function name from where this was called.
    16051605     */
    16061606    return (bool) apply_filters( 'wp_lazy_loading_enabled', $default, $tag_name, $context );
  • trunk/src/wp-includes/post.php

    r48067 r48099  
    47174717         * @since 5.5.0
    47184718         *
    4719          * @param array $post_types An array of post types. Default empty array.
     4719         * @param string[] $post_types An array of post type names. Default empty array.
    47204720         */
    47214721        $default_category_post_types = apply_filters( 'default_category_post_types', array() );
Note: See TracChangeset for help on using the changeset viewer.