Passed
Push — master ( 4cd530...dde1fc )
by William
02:46 queued 11s
created
src/Utils/Query.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -232,7 +232,7 @@  discard block
 block discarded – undo
232 232
         $flags['querytype'] = 'SELECT';
233 233
         $flags['is_select'] = true;
234 234
 
235
-        if (! empty($statement->from)) {
235
+        if (!empty($statement->from)) {
236 236
             $flags['select_from'] = true;
237 237
         }
238 238
 
@@ -240,23 +240,23 @@  discard block
 block discarded – undo
240 240
             $flags['distinct'] = true;
241 241
         }
242 242
 
243
-        if (! empty($statement->group) || ! empty($statement->having)) {
243
+        if (!empty($statement->group) || !empty($statement->having)) {
244 244
             $flags['is_group'] = true;
245 245
         }
246 246
 
247
-        if (! empty($statement->into) && ($statement->into->type === 'OUTFILE')) {
247
+        if (!empty($statement->into) && ($statement->into->type === 'OUTFILE')) {
248 248
             $flags['is_export'] = true;
249 249
         }
250 250
 
251 251
         $expressions = $statement->expr;
252
-        if (! empty($statement->join)) {
252
+        if (!empty($statement->join)) {
253 253
             foreach ($statement->join as $join) {
254 254
                 $expressions[] = $join->expr;
255 255
             }
256 256
         }
257 257
 
258 258
         foreach ($expressions as $expr) {
259
-            if (! empty($expr->function)) {
259
+            if (!empty($expr->function)) {
260 260
                 if ($expr->function === 'COUNT') {
261 261
                     $flags['is_count'] = true;
262 262
                 } elseif (in_array($expr->function, static::$FUNCTIONS)) {
@@ -271,23 +271,23 @@  discard block
 block discarded – undo
271 271
             $flags['is_subquery'] = true;
272 272
         }
273 273
 
274
-        if (! empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) {
274
+        if (!empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) {
275 275
             $flags['is_analyse'] = true;
276 276
         }
277 277
 
278
-        if (! empty($statement->group)) {
278
+        if (!empty($statement->group)) {
279 279
             $flags['group'] = true;
280 280
         }
281 281
 
282
-        if (! empty($statement->having)) {
282
+        if (!empty($statement->having)) {
283 283
             $flags['having'] = true;
284 284
         }
285 285
 
286
-        if (! empty($statement->union)) {
286
+        if (!empty($statement->union)) {
287 287
             $flags['union'] = true;
288 288
         }
289 289
 
290
-        if (! empty($statement->join)) {
290
+        if (!empty($statement->join)) {
291 291
             $flags['join'] = true;
292 292
         }
293 293
 
@@ -377,11 +377,11 @@  discard block
 block discarded – undo
377 377
             || ($statement instanceof UpdateStatement)
378 378
             || ($statement instanceof DeleteStatement)
379 379
         ) {
380
-            if (! empty($statement->limit)) {
380
+            if (!empty($statement->limit)) {
381 381
                 $flags['limit'] = true;
382 382
             }
383 383
 
384
-            if (! empty($statement->order)) {
384
+            if (!empty($statement->order)) {
385 385
                 $flags['order'] = true;
386 386
             }
387 387
         }
@@ -426,7 +426,7 @@  discard block
 block discarded – undo
426 426
             // Finding tables' aliases and their associated real names.
427 427
             $tableAliases = [];
428 428
             foreach ($statement->from as $expr) {
429
-                if (! isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) {
429
+                if (!isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) {
430 430
                     continue;
431 431
                 }
432 432
 
@@ -451,7 +451,7 @@  discard block
 block discarded – undo
451 451
                         ];
452 452
                     }
453 453
 
454
-                    if (! in_array($arr, $ret['select_tables'])) {
454
+                    if (!in_array($arr, $ret['select_tables'])) {
455 455
                         $ret['select_tables'][] = $arr;
456 456
                     }
457 457
                 } else {
@@ -464,7 +464,7 @@  discard block
 block discarded – undo
464 464
             // extracted from the FROM clause.
465 465
             if (empty($ret['select_tables'])) {
466 466
                 foreach ($statement->from as $expr) {
467
-                    if (! isset($expr->table) || ($expr->table === '')) {
467
+                    if (!isset($expr->table) || ($expr->table === '')) {
468 468
                         continue;
469 469
                     }
470 470
 
@@ -505,7 +505,7 @@  discard block
 block discarded – undo
505 505
         } elseif (($statement instanceof AlterStatement) || ($statement instanceof TruncateStatement)) {
506 506
             $expressions = [$statement->table];
507 507
         } elseif ($statement instanceof DropStatement) {
508
-            if (! $statement->options->has('TABLE')) {
508
+            if (!$statement->options->has('TABLE')) {
509 509
                 // No tables are dropped.
510 510
                 return [];
511 511
             }
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
 
792 792
             $statement .= $token->token;
793 793
 
794
-            if (($token->type === Token::TYPE_DELIMITER) && ! empty($token->token)) {
794
+            if (($token->type === Token::TYPE_DELIMITER) && !empty($token->token)) {
795 795
                 $delimiter = $token->token;
796 796
                 $fullStatement = true;
797 797
                 break;
@@ -800,7 +800,7 @@  discard block
 block discarded – undo
800 800
 
801 801
         // No statement was found so we return the entire query as being the
802 802
         // remaining part.
803
-        if (! $fullStatement) {
803
+        if (!$fullStatement) {
804 804
             return [
805 805
                 null,
806 806
                 $query,
Please login to merge, or discard this patch.
src/Utils/Formatter.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
                 // The options of a clause should stay on the same line and everything that follows.
430 430
                 if (
431 431
                     $this->options['parts_newline']
432
-                    && ! $formattedOptions
432
+                    && !$formattedOptions
433 433
                     && empty(self::$INLINE_CLAUSES[$lastClause])
434 434
                     && (
435 435
                         $curr->type !== Token::TYPE_KEYWORD
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
                         end($blocksLineEndings) === true
490 490
                         || (
491 491
                             empty(self::$INLINE_CLAUSES[$lastClause])
492
-                            && ! $shortGroup
492
+                            && !$shortGroup
493 493
                             && $this->options['parts_newline']
494 494
                         )
495 495
                     ) {
@@ -531,7 +531,7 @@  discard block
 block discarded – undo
531 531
                     if (
532 532
                         // A space after delimiters that are longer than 2 characters.
533 533
                         $prev->keyword === 'DELIMITER'
534
-                        || ! (
534
+                        || !(
535 535
                             ($prev->type === Token::TYPE_OPERATOR && ($prev->value === '.' || $prev->value === '('))
536 536
                             // No space after . (
537 537
                             || ($curr->type === Token::TYPE_OPERATOR
@@ -645,12 +645,12 @@  discard block
 block discarded – undo
645 645
         static $prev;
646 646
 
647 647
         foreach ($this->options['formats'] as $format) {
648
-            if ($token->type !== $format['type'] || ! (($token->flags & $format['flags']) === $format['flags'])) {
648
+            if ($token->type !== $format['type'] || !(($token->flags & $format['flags']) === $format['flags'])) {
649 649
                 continue;
650 650
             }
651 651
 
652 652
             // Running transformation function.
653
-            if (! empty($format['function'])) {
653
+            if (!empty($format['function'])) {
654 654
                 $func = $format['function'];
655 655
                 $text = $func($text);
656 656
             }
Please login to merge, or discard this patch.
src/Utils/Table.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public static function getForeignKeys($statement)
28 28
     {
29
-        if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) {
29
+        if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) {
30 30
             return [];
31 31
         }
32 32
 
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
                 'index_list' => $columns,
48 48
             ];
49 49
 
50
-            if (! empty($field->references)) {
50
+            if (!empty($field->references)) {
51 51
                 $tmp['ref_db_name'] = $field->references->table->database;
52 52
                 $tmp['ref_table_name'] = $field->references->table->table;
53 53
                 $tmp['ref_index_list'] = $field->references->columns;
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      */
81 81
     public static function getFields($statement)
82 82
     {
83
-        if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) {
83
+        if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) {
84 84
             return [];
85 85
         }
86 86
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
                 'timestamp_not_null' => false,
98 98
             ];
99 99
 
100
-            if (! $field->options) {
100
+            if (!$field->options) {
101 101
                 continue;
102 102
             }
103 103
 
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 
125 125
             $option = $field->options->has('AS');
126 126
 
127
-            if (! $option) {
127
+            if (!$option) {
128 128
                 continue;
129 129
             }
130 130
 
Please login to merge, or discard this patch.
src/Utils/Misc.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      */
26 26
     public static function getAliases($statement, $database)
27 27
     {
28
-        if (! ($statement instanceof SelectStatement) || empty($statement->expr) || empty($statement->from)) {
28
+        if (!($statement instanceof SelectStatement) || empty($statement->expr) || empty($statement->from)) {
29 29
             return [];
30 30
         }
31 31
 
@@ -42,28 +42,28 @@  discard block
 block discarded – undo
42 42
         $expressions = $statement->from;
43 43
 
44 44
         // Adding expressions from JOIN.
45
-        if (! empty($statement->join)) {
45
+        if (!empty($statement->join)) {
46 46
             foreach ($statement->join as $join) {
47 47
                 $expressions[] = $join->expr;
48 48
             }
49 49
         }
50 50
 
51 51
         foreach ($expressions as $expr) {
52
-            if (! isset($expr->table) || ($expr->table === '')) {
52
+            if (!isset($expr->table) || ($expr->table === '')) {
53 53
                 continue;
54 54
             }
55 55
 
56 56
             $thisDb = isset($expr->database) && ($expr->database !== '') ?
57 57
                 $expr->database : $database;
58 58
 
59
-            if (! isset($retval[$thisDb])) {
59
+            if (!isset($retval[$thisDb])) {
60 60
                 $retval[$thisDb] = [
61 61
                     'alias' => null,
62 62
                     'tables' => [],
63 63
                 ];
64 64
             }
65 65
 
66
-            if (! isset($retval[$thisDb]['tables'][$expr->table])) {
66
+            if (!isset($retval[$thisDb]['tables'][$expr->table])) {
67 67
                 $retval[$thisDb]['tables'][$expr->table] = [
68 68
                     'alias' => isset($expr->alias) && ($expr->alias !== '') ?
69 69
                         $expr->alias : null,
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
                 ];
72 72
             }
73 73
 
74
-            if (! isset($tables[$thisDb])) {
74
+            if (!isset($tables[$thisDb])) {
75 75
                 $tables[$thisDb] = [];
76 76
             }
77 77
 
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         }
80 80
 
81 81
         foreach ($statement->expr as $expr) {
82
-            if (! isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) {
82
+            if (!isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) {
83 83
                 continue;
84 84
             }
85 85
 
Please login to merge, or discard this patch.
src/Parser.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -470,7 +470,7 @@  discard block
 block discarded – undo
470 470
 
471 471
             // Checking if it is a known statement that can be parsed.
472 472
             if (empty(static::$STATEMENT_PARSERS[$token->keyword])) {
473
-                if (! isset(static::$STATEMENT_PARSERS[$token->keyword])) {
473
+                if (!isset(static::$STATEMENT_PARSERS[$token->keyword])) {
474 474
                     // A statement is considered recognized if the parser
475 475
                     // is aware that it is a statement, but it does not have
476 476
                     // a parser for it yet.
@@ -510,7 +510,7 @@  discard block
 block discarded – undo
510 510
 
511 511
             // Handles unions.
512 512
             if (
513
-                ! empty($unionType)
513
+                !empty($unionType)
514 514
                 && ($lastStatement instanceof SelectStatement)
515 515
                 && ($statement instanceof SelectStatement)
516 516
             ) {
Please login to merge, or discard this patch.
src/Token.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
         switch ($this->type) {
223 223
             case self::TYPE_KEYWORD:
224 224
                 $this->keyword = strtoupper($this->token);
225
-                if (! ($this->flags & self::FLAG_KEYWORD_RESERVED)) {
225
+                if (!($this->flags & self::FLAG_KEYWORD_RESERVED)) {
226 226
                     // Unreserved keywords should stay the way they are because they
227 227
                     // might represent field names.
228 228
                     return $this->token;
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
                     }
248 248
                 } elseif (($this->flags & self::FLAG_NUMBER_APPROXIMATE) || ($this->flags & self::FLAG_NUMBER_FLOAT)) {
249 249
                     $ret = (float) $ret;
250
-                } elseif (! ($this->flags & self::FLAG_NUMBER_BINARY)) {
250
+                } elseif (!($this->flags & self::FLAG_NUMBER_BINARY)) {
251 251
                     $ret = (int) $ret;
252 252
                 }
253 253
 
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
                     // in PHP 5.3- the `null` parameter isn't handled correctly.
283 283
                     $str = mb_substr(
284 284
                         $str,
285
-                        ! empty($str[1]) && ($str[1] === '@') ? 2 : 1,
285
+                        !empty($str[1]) && ($str[1] === '@') ? 2 : 1,
286 286
                         mb_strlen($str),
287 287
                         'UTF-8'
288 288
                     );
Please login to merge, or discard this patch.
src/Lexer.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 use function strlen;
22 22
 use function substr;
23 23
 
24
-if (! defined('USE_UTF_STRINGS')) {
24
+if (!defined('USE_UTF_STRINGS')) {
25 25
     // NOTE: In previous versions of PHP (5.5 and older) the default
26 26
     // internal encoding is "ISO-8859-1".
27 27
     // All `mb_` functions must specify the correct encoding, which is
@@ -176,7 +176,7 @@  discard block
 block discarded – undo
176 176
 
177 177
         // For multi-byte strings, a new instance of `UtfString` is
178 178
         // initialized (only if `UtfString` usage is forced.
179
-        if (! $str instanceof UtfString && USE_UTF_STRINGS && $len !== mb_strlen($str, 'UTF-8')) {
179
+        if (!$str instanceof UtfString && USE_UTF_STRINGS && $len !== mb_strlen($str, 'UTF-8')) {
180 180
             $str = new UtfString($str);
181 181
         }
182 182
 
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
         $this->strict = $strict;
187 187
 
188 188
         // Setting the delimiter.
189
-        $this->setDelimiter(! empty($delimiter) ? $delimiter : static::$DEFAULT_DELIMITER);
189
+        $this->setDelimiter(!empty($delimiter) ? $delimiter : static::$DEFAULT_DELIMITER);
190 190
 
191 191
         $this->lex();
192 192
     }
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
                 $delimiterLen = 0;
311 311
                 while (
312 312
                     ++$this->last < $this->len
313
-                    && ! Context::isWhitespace($this->str[$this->last])
313
+                    && !Context::isWhitespace($this->str[$this->last])
314 314
                     && $delimiterLen < 15
315 315
                 ) {
316 316
                     $this->delimiter .= $this->str[$this->last];
@@ -370,8 +370,8 @@  discard block
 block discarded – undo
370 370
             }
371 371
 
372 372
             if (
373
-                ($next->type !== Token::TYPE_KEYWORD || ! in_array($next->value, ['FROM', 'USING'], true))
374
-                && ($next->type !== Token::TYPE_OPERATOR || ! in_array($next->value, [',', ')'], true))
373
+                ($next->type !== Token::TYPE_KEYWORD || !in_array($next->value, ['FROM', 'USING'], true))
374
+                && ($next->type !== Token::TYPE_OPERATOR || !in_array($next->value, [',', ')'], true))
375 375
             ) {
376 376
                 continue;
377 377
             }
@@ -450,7 +450,7 @@  discard block
 block discarded – undo
450 450
             $token .= $this->str[$this->last];
451 451
             $flags = Context::isKeyword($token);
452 452
 
453
-            if (($this->last + 1 !== $this->len && ! Context::isSeparator($this->str[$this->last + 1])) || ! $flags) {
453
+            if (($this->last + 1 !== $this->len && !Context::isSeparator($this->str[$this->last + 1])) || !$flags) {
454 454
                 continue;
455 455
             }
456 456
 
@@ -542,7 +542,7 @@  discard block
 block discarded – undo
542 542
             $token .= $this->str[$this->last];
543 543
             $flags = Context::isOperator($token);
544 544
 
545
-            if (! $flags) {
545
+            if (!$flags) {
546 546
                 continue;
547 547
             }
548 548
 
@@ -564,7 +564,7 @@  discard block
 block discarded – undo
564 564
     {
565 565
         $token = $this->str[$this->last];
566 566
 
567
-        if (! Context::isWhitespace($token)) {
567
+        if (!Context::isWhitespace($token)) {
568 568
             return null;
569 569
         }
570 570
 
@@ -804,7 +804,7 @@  discard block
 block discarded – undo
804 804
             } elseif ($state === 2) {
805 805
                 $flags |= Token::FLAG_NUMBER_HEX;
806 806
                 if (
807
-                    ! (
807
+                    !(
808 808
                         ($this->str[$this->last] >= '0' && $this->str[$this->last] <= '9')
809 809
                         || ($this->str[$this->last] >= 'A' && $this->str[$this->last] <= 'F')
810 810
                         || ($this->str[$this->last] >= 'a' && $this->str[$this->last] <= 'f')
@@ -907,7 +907,7 @@  discard block
 block discarded – undo
907 907
         $token = $this->str[$this->last];
908 908
         $flags = Context::isString($token);
909 909
 
910
-        if (! $flags && $token !== $quote) {
910
+        if (!$flags && $token !== $quote) {
911 911
             return null;
912 912
         }
913 913
 
@@ -959,7 +959,7 @@  discard block
 block discarded – undo
959 959
         $token = $this->str[$this->last];
960 960
         $flags = Context::isSymbol($token);
961 961
 
962
-        if (! $flags) {
962
+        if (!$flags) {
963 963
             return null;
964 964
         }
965 965
 
@@ -1010,7 +1010,7 @@  discard block
 block discarded – undo
1010 1010
             return null;
1011 1011
         }
1012 1012
 
1013
-        while (++$this->last < $this->len && ! Context::isSeparator($this->str[$this->last])) {
1013
+        while (++$this->last < $this->len && !Context::isSeparator($this->str[$this->last])) {
1014 1014
             $token .= $this->str[$this->last];
1015 1015
 
1016 1016
             // Test if end of token equals the current delimiter. If so, remove it from the token.
Please login to merge, or discard this patch.
src/Components/OrderKeyword.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
                 ) {
95 95
                     $expr->type = $token->keyword;
96 96
                 } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) {
97
-                    if (! empty($expr->expr)) {
97
+                    if (!empty($expr->expr)) {
98 98
                         $ret[] = $expr;
99 99
                     }
100 100
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
         }
108 108
 
109 109
         // Last iteration was not processed.
110
-        if (! empty($expr->expr)) {
110
+        if (!empty($expr->expr)) {
111 111
             $ret[] = $expr;
112 112
         }
113 113
 
Please login to merge, or discard this patch.
src/Statements/CreateStatement.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
     public function build()
377 377
     {
378 378
         $fields = '';
379
-        if (! empty($this->fields)) {
379
+        if (!empty($this->fields)) {
380 380
             if (is_array($this->fields)) {
381 381
                 $fields = CreateDefinition::build($this->fields) . ' ';
382 382
             } elseif ($this->fields instanceof ArrayObj) {
@@ -408,23 +408,23 @@  discard block
 block discarded – undo
408 408
 
409 409
             $partition = '';
410 410
 
411
-            if (! empty($this->partitionBy)) {
411
+            if (!empty($this->partitionBy)) {
412 412
                 $partition .= "\nPARTITION BY " . $this->partitionBy;
413 413
             }
414 414
 
415
-            if (! empty($this->partitionsNum)) {
415
+            if (!empty($this->partitionsNum)) {
416 416
                 $partition .= "\nPARTITIONS " . $this->partitionsNum;
417 417
             }
418 418
 
419
-            if (! empty($this->subpartitionBy)) {
419
+            if (!empty($this->subpartitionBy)) {
420 420
                 $partition .= "\nSUBPARTITION BY " . $this->subpartitionBy;
421 421
             }
422 422
 
423
-            if (! empty($this->subpartitionsNum)) {
423
+            if (!empty($this->subpartitionsNum)) {
424 424
                 $partition .= "\nSUBPARTITIONS " . $this->subpartitionsNum;
425 425
             }
426 426
 
427
-            if (! empty($this->partitions)) {
427
+            if (!empty($this->partitions)) {
428 428
                 $partition .= "\n" . PartitionDefinition::build($this->partitions);
429 429
             }
430 430
 
@@ -439,7 +439,7 @@  discard block
 block discarded – undo
439 439
                 . OptionsArray::build($this->options) . ' '
440 440
                 . Expression::build($this->name) . ' '
441 441
                 . $fields . ' AS ' . ($this->select ? $this->select->build() : '')
442
-                . (! empty($this->body) ? TokensList::build($this->body) : '') . ' '
442
+                . (!empty($this->body) ? TokensList::build($this->body) : '') . ' '
443 443
                 . OptionsArray::build($this->entityOptions);
444 444
         } elseif ($this->options->has('TRIGGER')) {
445 445
             return 'CREATE '
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
             ]
493 493
         );
494 494
 
495
-        if (! isset($this->name) || ($this->name === '')) {
495
+        if (!isset($this->name) || ($this->name === '')) {
496 496
             $parser->error('The name of the entity was expected.', $list->tokens[$list->idx]);
497 497
         } else {
498 498
             ++$list->idx; // Skipping field.
@@ -600,7 +600,7 @@  discard block
 block discarded – undo
600 600
                         $token = $list->getNextOfType(Token::TYPE_NUMBER);
601 601
                         --$list->idx; // `getNextOfType` also advances one position.
602 602
                         $this->subpartitionsNum = $token->value;
603
-                    } elseif (! empty($field)) {
603
+                    } elseif (!empty($field)) {
604 604
                         /*
605 605
                          * Handling the content of `PARTITION BY` and `SUBPARTITION BY`.
606 606
                          */
@@ -629,7 +629,7 @@  discard block
 block discarded – undo
629 629
                             $field = null;
630 630
                         }
631 631
                     } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === '(')) {
632
-                        if (! empty($this->partitionBy)) {
632
+                        if (!empty($this->partitionBy)) {
633 633
                             $this->partitions = ArrayObj::parse(
634 634
                                 $parser,
635 635
                                 $list,
Please login to merge, or discard this patch.