Make WordPress Core


Ignore:
Timestamp:
04/17/2022 03:05:10 PM (3 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Correct alignment in various files.

This fixes an Array double arrow not aligned correctly WPCS warning.

Follow-up to [53075], [53084], [53091], [53094], [53155], [53129].

See #54728.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/block-template-utils.php

    r53129 r53197  
    10021002        global $wp_version;
    10031003        $theme_json_version = 'wp/' . substr( $wp_version, 0, 3 );
    1004         $schema         = array( '$schema' => 'https://schemas.wp.org/' . $theme_json_version . '/theme.json' );
    1005         $theme_json_raw = array_merge( $schema, $theme_json_raw );
     1004        $schema             = array( '$schema' => 'https://schemas.wp.org/' . $theme_json_version . '/theme.json' );
     1005        $theme_json_raw     = array_merge( $schema, $theme_json_raw );
    10061006    }
    10071007
Note: See TracChangeset for help on using the changeset viewer.