Make WordPress Core


Ignore:
Timestamp:
10/18/2020 08:52:01 PM (4 years ago)
Author:
johnbillion
Message:

Docs: Further corrections and promotions for docblocks relating to object types.

See #50768

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-walker-category-checklist.php

    r48880 r49197  
    6363     * @since 2.5.1
    6464     *
    65      * @param string $output   Used to append additional content (passed by reference).
    66      * @param object $category The current term object.
    67      * @param int    $depth    Depth of the term in reference to parents. Default 0.
    68      * @param array  $args     An array of arguments. @see wp_terms_checklist()
    69      * @param int    $id       ID of the current term.
     65     * @param string  $output   Used to append additional content (passed by reference).
     66     * @param WP_Term $category The current term object.
     67     * @param int     $depth    Depth of the term in reference to parents. Default 0.
     68     * @param array   $args     An array of arguments. @see wp_terms_checklist()
     69     * @param int     $id       ID of the current term.
    7070     */
    7171    public function start_el( &$output, $category, $depth = 0, $args = array(), $id = 0 ) {
     
    122122     * @since 2.5.1
    123123     *
    124      * @param string $output   Used to append additional content (passed by reference).
    125      * @param object $category The current term object.
    126      * @param int    $depth    Depth of the term in reference to parents. Default 0.
    127      * @param array  $args     An array of arguments. @see wp_terms_checklist()
     124     * @param string  $output   Used to append additional content (passed by reference).
     125     * @param WP_Term $category The current term object.
     126     * @param int     $depth    Depth of the term in reference to parents. Default 0.
     127     * @param array   $args     An array of arguments. @see wp_terms_checklist()
    128128     */
    129129    public function end_el( &$output, $category, $depth = 0, $args = array() ) {
Note: See TracChangeset for help on using the changeset viewer.