Make WordPress Core


Ignore:
Timestamp:
07/09/2023 08:15:03 PM (19 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].

Props costdev, audrasjb.
See #58459.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-image-editor-gd.php

    r54226 r56177  
    325325     */
    326326    public function crop( $src_x, $src_y, $src_w, $src_h, $dst_w = null, $dst_h = null, $src_abs = false ) {
    327         // If destination width/height isn't specified,
    328         // use same as width/height from source.
     327        /*
     328         * If destination width/height isn't specified,
     329         * use same as width/height from source.
     330         */
    329331        if ( ! $dst_w ) {
    330332            $dst_w = $src_w;
Note: See TracChangeset for help on using the changeset viewer.