Make WordPress Core


Ignore:
Timestamp:
09/10/2019 07:22:07 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Fix placement of some duplicate hook references.

Hook documentation should be on the line directly above the line containing the do_action() or apply_filters() call. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of duplicate hook references.

Includes minor code layout fixes.

See #47110.

File:
1 edited

Legend:

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

    r45932 r46088  
    666666        chmod( $filename, $perms );
    667667
    668         /** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
    669668        return array(
    670669            'path'      => $filename,
     670            /** This filter is documented in wp-includes/class-wp-image-editor-gd.php */
    671671            'file'      => wp_basename( apply_filters( 'image_make_intermediate_size', $filename ) ),
    672672            'width'     => $this->size['width'],
Note: See TracChangeset for help on using the changeset viewer.