Make WordPress Core


Ignore:
Timestamp:
03/16/2020 06:38:03 PM (5 years ago)
Author:
johnbillion
Message:

Docs: Various docblock corrections and improvements.

See #49572

File:
1 edited

Legend:

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

    r47454 r47461  
    26172617 * @param string       $bits       File content
    26182618 * @param string       $time       Optional. Time formatted in 'yyyy/mm'. Default null.
    2619  * @return array
     2619 * @return array {
     2620 *     Information about the newly-uploaded file.
     2621 *
     2622 *     @type string       $file  Filename of the newly-uploaded file.
     2623 *     @type string       $url   URL of the uploaded file.
     2624 *     @type string       $type  File type.
     2625 *     @type string|false $error Error message, if there has been an error.
     2626 * }
    26202627 */
    26212628function wp_upload_bits( $name, $deprecated, $bits, $time = null ) {
Note: See TracChangeset for help on using the changeset viewer.