Completed
Push — master ( 446f2e...32b2c3 )
by Nelson
11:26
created
tests/TestCase/Extensions/StringTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
             $format .= "{{$i}}, ";
89 89
         }
90 90
         $format .= '{8} y {9}.';
91
-        $actual   = String::format($format, range(1, 10));
91
+        $actual = String::format($format, range(1, 10));
92 92
         $this->assertEquals($expected, $actual);
93 93
     }
94 94
 
Please login to merge, or discard this patch.
src/PropertiesHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -228,7 +228,7 @@  discard block
 block discarded – undo
228 228
          */
229 229
         protected static function getPropertySetter($name)
230 230
         {
231
-            $args   = [
231
+            $args = [
232 232
                 'class' => get_called_class(),
233 233
             ];
234 234
 
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
          */
283 283
         protected static function getPropertyGetter($name)
284 284
         {
285
-            $args   = [
285
+            $args = [
286 286
                 'class' => get_called_class(),
287 287
             ];
288 288
 
Please login to merge, or discard this patch.
src/Object.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -155,7 +155,7 @@
 block discarded – undo
155 155
                 $r = $right->compareTo($left);
156 156
 
157 157
                 if ($r !== null) {
158
-                    $r *= -1;  // Invert result
158
+                    $r *= -1; // Invert result
159 159
                 }
160 160
             } else {
161 161
                 $ltype = typeof($left);
Please login to merge, or discard this patch.