Make WordPress Core


Ignore:
Timestamp:
03/01/2020 10:36:38 AM (4 years ago)
Author:
johnbillion
Message:

Docs: Use more specific types in parameter descriptions in place of mixed.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/general-template.php

    r47374 r47397  
    824824             * @since 2.0.5
    825825             *
    826              * @param mixed $output The URL returned by bloginfo().
    827              * @param mixed $show   Type of information requested.
     826             * @param string $output The URL returned by bloginfo().
     827             * @param string $show   Type of information requested.
    828828             */
    829829            $output = apply_filters( 'bloginfo_url', $output, $show );
     
    834834             * @since 0.71
    835835             *
    836              * @param mixed $output The requested non-URL site information.
    837              * @param mixed $show   Type of information requested.
     836             * @param mixed  $output The requested non-URL site information.
     837             * @param string $show   Type of information requested.
    838838             */
    839839            $output = apply_filters( 'bloginfo', $output, $show );
Note: See TracChangeset for help on using the changeset viewer.