Make WordPress Core


Ignore:
Timestamp:
07/20/2023 12:04:33 AM (14 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 [55971], [56033], [56056], [56143], [56214].

Props jrf.
See #58831.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-debug-data.php

    r56174 r56273  
    847847        // Server time.
    848848        $date = new DateTime( 'now', new DateTimeZone( 'UTC' ) );
    849         $info['wp-server']['fields']['current'] = array(
     849
     850        $info['wp-server']['fields']['current']     = array(
    850851            'label' => __( 'Current time' ),
    851852            'value' => $date->format( DateTime::ATOM ),
    852853        );
    853         $info['wp-server']['fields']['utc-time'] = array(
     854        $info['wp-server']['fields']['utc-time']    = array(
    854855            'label' => __( 'Current UTC time' ),
    855856            'value' => $date->format( DateTime::RFC850 ),
Note: See TracChangeset for help on using the changeset viewer.