Make WordPress Core


Ignore:
Timestamp:
11/02/2023 12:02:36 AM (16 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct equals sign alignment in various files.

This resolves a few WPCS warnings:

Equals sign not aligned with surrounding statements

so that the output of composer format is clean.

Follow-up to [56796], [56803], [56838], [56839], [56985].

See #59650.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-block-list.php

    r56803 r57053  
    9494
    9595        if ( isset( $block ) && is_array( $block ) ) {
    96             $block                  = new WP_Block( $block, $this->available_context, $this->registry );
     96            $block = new WP_Block( $block, $this->available_context, $this->registry );
     97
    9798            $this->blocks[ $offset ] = $block;
    9899        }
Note: See TracChangeset for help on using the changeset viewer.