Completed
Push — master ( 7eebd4...4aadd2 )
by Michal
521:02 queued 455:56
created
src/Utils/Formatter.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -218,12 +218,12 @@  discard block
 block discarded – undo
218 218
         /* Sanitize the array so that we do not have to care later */
219 219
         foreach ($newFormats as $j => $new) {
220 220
             foreach ($integers as $name) {
221
-                if (! isset($new[$name])) {
221
+                if (!isset($new[$name])) {
222 222
                     $newFormats[$j][$name] = 0;
223 223
                 }
224 224
             }
225 225
             foreach ($strings as $name) {
226
-                if (! isset($new[$name])) {
226
+                if (!isset($new[$name])) {
227 227
                     $newFormats[$j][$name] = '';
228 228
                 }
229 229
             }
@@ -243,7 +243,7 @@  discard block
 block discarded – undo
243 243
 
244 244
         /* Add not already handled formats */
245 245
         foreach ($newFormats as $j => $new) {
246
-            if (! in_array($j, $added)) {
246
+            if (!in_array($j, $added)) {
247 247
                 $formats[] = $new;
248 248
             }
249 249
         }
@@ -421,7 +421,7 @@  discard block
 block discarded – undo
421 421
                     // pieces only if the clause is not inlined or this fragment
422 422
                     // is between brackets that are on new line.
423 423
                     if (((empty(self::$INLINE_CLAUSES[$lastClause]))
424
-                        && ! $shortGroup
424
+                        && !$shortGroup
425 425
                         && ($this->options['parts_newline']))
426 426
                         || (end($blocksLineEndings) === true)
427 427
                     ) {
@@ -507,9 +507,9 @@  discard block
 block discarded – undo
507 507
             array(
508 508
                 "\x00", "\x01", "\x02", "\x03", "\x04",
509 509
                 "\x05", "\x06", "\x07", "\x08", "\x09", "\x0A",
510
-                "\x0B","\x0C","\x0D", "\x0E", "\x0F", "\x10", "\x11",
511
-                "\x12","\x13","\x14","\x15", "\x16", "\x17", "\x18",
512
-                "\x19","\x1A","\x1B","\x1C","\x1D", "\x1E", "\x1F"
510
+                "\x0B", "\x0C", "\x0D", "\x0E", "\x0F", "\x10", "\x11",
511
+                "\x12", "\x13", "\x14", "\x15", "\x16", "\x17", "\x18",
512
+                "\x19", "\x1A", "\x1B", "\x1C", "\x1D", "\x1E", "\x1F"
513 513
             ),
514 514
             array(
515 515
                 '\x00', '\x01', '\x02', '\x03', '\x04',
Please login to merge, or discard this patch.