Make WordPress Core


Ignore:
Timestamp:
07/09/2023 09:46:24 PM (3 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].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

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

    r55988 r56180  
    542542 */
    543543function wp_clear_scheduled_hook( $hook, $args = array(), $wp_error = false ) {
    544     // Backward compatibility.
    545     // Previously, this function took the arguments as discrete vars rather than an array like the rest of the API.
     544    /*
     545     * Backward compatibility.
     546     * Previously, this function took the arguments as discrete vars rather than an array like the rest of the API.
     547     */
    546548    if ( ! is_array( $args ) ) {
    547549        _deprecated_argument( __FUNCTION__, '3.0.0', __( 'This argument has changed to an array to match the behavior of the other cron functions.' ) );
Note: See TracChangeset for help on using the changeset viewer.