Make WordPress Core


Ignore:
Timestamp:
07/10/2023 11:19:12 PM (2 years 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], [56195].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/widgets/class-wp-widget-media.php

    r53302 r56196  
    108108        $this->registered = true;
    109109
    110         // Note that the widgets component in the customizer will also do
    111         // the 'admin_print_scripts-widgets.php' action in WP_Customize_Widgets::print_scripts().
     110        /*
     111         * Note that the widgets component in the customizer will also do
     112         * the 'admin_print_scripts-widgets.php' action in WP_Customize_Widgets::print_scripts().
     113         */
    112114        add_action( 'admin_print_scripts-widgets.php', array( $this, 'enqueue_admin_scripts' ) );
    113115
     
    116118        }
    117119
    118         // Note that the widgets component in the customizer will also do
    119         // the 'admin_footer-widgets.php' action in WP_Customize_Widgets::print_footer_scripts().
     120        /*
     121         * Note that the widgets component in the customizer will also do
     122         * the 'admin_footer-widgets.php' action in WP_Customize_Widgets::print_footer_scripts().
     123         */
    120124        add_action( 'admin_footer-widgets.php', array( $this, 'render_control_template_scripts' ) );
    121125
Note: See TracChangeset for help on using the changeset viewer.