Make WordPress Core


Ignore:
Timestamp:
10/28/2019 07:46:13 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Miscellaneous docblock corrections.

See #48303

File:
1 edited

Legend:

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

    r46602 r46610  
    26192619 *     Values for the extension and mime type.
    26202620 *
    2621  *     @type string|false $0 File extension, or false if the file doesn't match a mime type.
    2622  *     @type string|false $1 File mime type, or false if the file doesn't match a mime type.
     2621 *     @type string|false $ext File extension, or false if the file doesn't match a mime type.
     2622 *     @type string|false $type File mime type, or false if the file doesn't match a mime type.
    26232623 * }
    26242624 */
     
    26612661 *     Values for the extension, mime type, and corrected filename.
    26622662 *
    2663  *     @type string|false $0 File extension, or false if the file doesn't match a mime type.
    2664  *     @type string|false $1 File mime type, or false if the file doesn't match a mime type.
    2665  *     @type string|false $2 File name with its correct extension, or false if it cannot be determined.
     2663 *     @type string|false $ext            File extension, or false if the file doesn't match a mime type.
     2664 *     @type string|false $type            File mime type, or false if the file doesn't match a mime type.
     2665 *     @type string|false $proper_filename File name with its correct extension, or false if it cannot be determined.
    26662666 * }
    26672667 */
     
    28232823     *     Values for the extension, mime type, and corrected filename.
    28242824     *
    2825      *     @type string|false $0 File extension, or false if the file doesn't match a mime type.
    2826      *     @type string|false $1 File mime type, or false if the file doesn't match a mime type.
    2827      *     @type string|false $2 File name with its correct extension, or false if it cannot be determined.
     2825     *     @type string|false $ext            File extension, or false if the file doesn't match a mime type.
     2826     *     @type string|false $type            File mime type, or false if the file doesn't match a mime type.
     2827     *     @type string|false $proper_filename File name with its correct extension, or false if it cannot be determined.
    28282828     * }
    28292829     * @param string      $file                      Full path to the file.
Note: See TracChangeset for help on using the changeset viewer.