Make WordPress Core


Ignore:
Timestamp:
07/10/2023 11:17:05 PM (15 months ago)
Author:
audrasjb
Message:

Docs: Replace multiple single line comments with multi-line comments.

This changeset updates various comments as per WordPress PHP Inline Documentation Standards.
See https://developer.wordpress.org/coding-standards/inline-documentation-standards/php/#5-inline-comments.

Follow-up to [56174], [56175], [56176], [56177], [56178], [56179], [56180], [56191], [56192], [56193], [56194].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-widget-types-controller.php

    r54971 r56195  
    465465        }
    466466
    467         // Set the widget's number so that the id attributes in the HTML that we
    468         // return are predictable.
     467        /*
     468         * Set the widget's number so that the id attributes in the HTML that we
     469         * return are predictable.
     470         */
    469471        if ( isset( $request['number'] ) && is_numeric( $request['number'] ) ) {
    470472            $widget_object->_set( (int) $request['number'] );
Note: See TracChangeset for help on using the changeset viewer.