Make WordPress Core


Ignore:
Timestamp:
11/26/2017 11:56:25 PM (7 years ago)
Author:
pento
Message:

General: Fix some precision alignment formatting warnings.

The WPCS WordPress.WhiteSpace.PrecisionAlignment rule throws warnings for a bunch of code that will likely cause issues for wpcbf. Fixing these manually beforehand gives us better auto-fixed results later.

See #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/compat.php

    r32364 r42228  
    9999hello world
    100100EOT;
    101         $inputs = array( 
    102         /*1*/  0,
    103                1,
    104                12345,
    105                -2345,
    106                // float data
    107         /*5*/  10.5,
    108                -10.5,
    109                12.3456789000e10,
    110                12.3456789000E-10,
    111                .5,
    112                // null data
    113         /*10*/ NULL,
    114                null,
    115                // boolean data
    116         /*12*/ true,
    117                false,
    118                TRUE,
    119                FALSE,
    120                // empty data
    121         /*16*/ "",
    122                '',
    123                // string data
    124         /*18*/ "string",
    125                'string',
    126                $heredoc,
    127                // object data
    128         /*21*/ new classA(),
    129                // undefined data
    130         /*22*/ @$undefined_var,
    131                // unset data
    132         /*23*/ @$unset_var,
     101        $inputs = array(
     102            0,
     103            1,
     104            12345,
     105            -2345,
     106            // float data
     107            10.5,
     108            -10.5,
     109            12.3456789000e10,
     110            12.3456789000E-10,
     111            .5,
     112            // null data
     113            NULL,
     114            null,
     115            // boolean data
     116            true,
     117            false,
     118            TRUE,
     119            FALSE,
     120            // empty data
     121            "",
     122            '',
     123            // string data
     124            "string",
     125            'string',
     126            $heredoc,
     127            // object data
     128            new classA(),
     129            // undefined data
     130            @$undefined_var,
     131            // unset data
     132            @$unset_var,
    133133        );
    134134        $outputs = array(
Note: See TracChangeset for help on using the changeset viewer.