Make WordPress Core

Changeset 53325


Ignore:
Timestamp:
05/01/2022 09:59:49 PM (3 years ago)
Author:
audrasjb
Message:

Coding standards: Remove extra spaces in docblocks of the Walker_PageDropdown class.

Follow-up to [51779].

See #54728.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-walker-page-dropdown.php

    r52652 r53325  
    5050     * @see Walker::start_el()
    5151     *
    52      * @param string  $output             Used to append additional content. Passed by reference.
    53      * @param WP_Post $data_object        Page data object.
    54      * @param int     $depth              Optional. Depth of page in reference to parent pages.
    55      *                                    Used for padding. Default 0.
    56      * @param array   $args               Optional. Uses 'selected' argument for selected page to
    57      *                                    set selected HTML attribute for option element. Uses
    58      *                                    'value_field' argument to fill "value" attribute.
    59      *                                    See wp_dropdown_pages(). Default empty array.
    60      * @param int     $current_object_id  Optional. ID of the current page. Default 0.
     52     * @param string  $output            Used to append additional content. Passed by reference.
     53     * @param WP_Post $data_object       Page data object.
     54     * @param int     $depth             Optional. Depth of page in reference to parent pages.
     55     *                                   Used for padding. Default 0.
     56     * @param array   $args              Optional. Uses 'selected' argument for selected page to
     57     *                                   set selected HTML attribute for option element. Uses
     58     *                                   'value_field' argument to fill "value" attribute.
     59     *                                   See wp_dropdown_pages(). Default empty array.
     60     * @param int     $current_object_id Optional. ID of the current page. Default 0.
    6161     */
    6262    public function start_el( &$output, $data_object, $depth = 0, $args = array(), $current_object_id = 0 ) {
Note: See TracChangeset for help on using the changeset viewer.