Completed
Push — master ( 64090c...a7a57c )
by William
18s queued 15s
created
src/Statements/SelectStatement.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -349,7 +349,7 @@
 block discarded – undo
349 349
         // This is a cheap fix for `SELECT` statements that contain `UNION`.
350 350
         // The `ORDER BY` and `LIMIT` clauses should be at the end of the
351 351
         // statement.
352
-        if (! empty($this->union)) {
352
+        if (!empty($this->union)) {
353 353
             $clauses = static::$clauses;
354 354
             unset($clauses['ORDER BY'], $clauses['LIMIT']);
355 355
             $clauses['ORDER BY'] = [
Please login to merge, or discard this patch.
src/Utils/Query.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
         $flags['querytype'] = 'SELECT';
293 293
         $flags['is_select'] = true;
294 294
 
295
-        if (! empty($statement->from)) {
295
+        if (!empty($statement->from)) {
296 296
             $flags['select_from'] = true;
297 297
         }
298 298
 
@@ -300,23 +300,23 @@  discard block
 block discarded – undo
300 300
             $flags['distinct'] = true;
301 301
         }
302 302
 
303
-        if (! empty($statement->group) || ! empty($statement->having)) {
303
+        if (!empty($statement->group) || !empty($statement->having)) {
304 304
             $flags['is_group'] = true;
305 305
         }
306 306
 
307
-        if (! empty($statement->into) && ($statement->into->type === 'OUTFILE')) {
307
+        if (!empty($statement->into) && ($statement->into->type === 'OUTFILE')) {
308 308
             $flags['is_export'] = true;
309 309
         }
310 310
 
311 311
         $expressions = $statement->expr;
312
-        if (! empty($statement->join)) {
312
+        if (!empty($statement->join)) {
313 313
             foreach ($statement->join as $join) {
314 314
                 $expressions[] = $join->expr;
315 315
             }
316 316
         }
317 317
 
318 318
         foreach ($expressions as $expr) {
319
-            if (! empty($expr->function)) {
319
+            if (!empty($expr->function)) {
320 320
                 if ($expr->function === 'COUNT') {
321 321
                     $flags['is_count'] = true;
322 322
                 } elseif (in_array($expr->function, static::$functions)) {
@@ -331,23 +331,23 @@  discard block
 block discarded – undo
331 331
             $flags['is_subquery'] = true;
332 332
         }
333 333
 
334
-        if (! empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) {
334
+        if (!empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) {
335 335
             $flags['is_analyse'] = true;
336 336
         }
337 337
 
338
-        if (! empty($statement->group)) {
338
+        if (!empty($statement->group)) {
339 339
             $flags['group'] = true;
340 340
         }
341 341
 
342
-        if (! empty($statement->having)) {
342
+        if (!empty($statement->having)) {
343 343
             $flags['having'] = true;
344 344
         }
345 345
 
346
-        if (! empty($statement->union)) {
346
+        if (!empty($statement->union)) {
347 347
             $flags['union'] = true;
348 348
         }
349 349
 
350
-        if (! empty($statement->join)) {
350
+        if (!empty($statement->join)) {
351 351
             $flags['join'] = true;
352 352
         }
353 353
 
@@ -438,11 +438,11 @@  discard block
 block discarded – undo
438 438
             || ($statement instanceof UpdateStatement)
439 439
             || ($statement instanceof DeleteStatement)
440 440
         ) {
441
-            if (! empty($statement->limit)) {
441
+            if (!empty($statement->limit)) {
442 442
                 $flags['limit'] = true;
443 443
             }
444 444
 
445
-            if (! empty($statement->order)) {
445
+            if (!empty($statement->order)) {
446 446
                 $flags['order'] = true;
447 447
             }
448 448
         }
@@ -492,7 +492,7 @@  discard block
 block discarded – undo
492 492
             // Finding tables' aliases and their associated real names.
493 493
             $tableAliases = [];
494 494
             foreach ($statement->from as $expr) {
495
-                if (! isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) {
495
+                if (!isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) {
496 496
                     continue;
497 497
                 }
498 498
 
@@ -517,7 +517,7 @@  discard block
 block discarded – undo
517 517
                         ];
518 518
                     }
519 519
 
520
-                    if (! in_array($arr, $ret['select_tables'])) {
520
+                    if (!in_array($arr, $ret['select_tables'])) {
521 521
                         $ret['select_tables'][] = $arr;
522 522
                     }
523 523
                 } else {
@@ -530,7 +530,7 @@  discard block
 block discarded – undo
530 530
             // extracted from the FROM clause.
531 531
             if (empty($ret['select_tables'])) {
532 532
                 foreach ($statement->from as $expr) {
533
-                    if (! isset($expr->table) || ($expr->table === '')) {
533
+                    if (!isset($expr->table) || ($expr->table === '')) {
534 534
                         continue;
535 535
                     }
536 536
 
@@ -571,7 +571,7 @@  discard block
 block discarded – undo
571 571
         } elseif (($statement instanceof AlterStatement) || ($statement instanceof TruncateStatement)) {
572 572
             $expressions = [$statement->table];
573 573
         } elseif ($statement instanceof DropStatement) {
574
-            if (! $statement->options->has('TABLE')) {
574
+            if (!$statement->options->has('TABLE')) {
575 575
                 // No tables are dropped.
576 576
                 return [];
577 577
             }
@@ -851,7 +851,7 @@  discard block
 block discarded – undo
851 851
 
852 852
             $statement .= $token->token;
853 853
 
854
-            if (($token->type === Token::TYPE_DELIMITER) && ! empty($token->token)) {
854
+            if (($token->type === Token::TYPE_DELIMITER) && !empty($token->token)) {
855 855
                 $delimiter = $token->token;
856 856
                 $fullStatement = true;
857 857
                 break;
@@ -860,7 +860,7 @@  discard block
 block discarded – undo
860 860
 
861 861
         // No statement was found so we return the entire query as being the
862 862
         // remaining part.
863
-        if (! $fullStatement) {
863
+        if (!$fullStatement) {
864 864
             return [
865 865
                 null,
866 866
                 $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
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
                 // The options of a clause should stay on the same line and everything that follows.
437 437
                 if (
438 438
                     $this->options['parts_newline']
439
-                    && ! $formattedOptions
439
+                    && !$formattedOptions
440 440
                     && empty(self::$inlineClauses[$lastClause])
441 441
                     && (
442 442
                         $curr->type !== Token::TYPE_KEYWORD
@@ -496,7 +496,7 @@  discard block
 block discarded – undo
496 496
                         end($blocksLineEndings) === true
497 497
                         || (
498 498
                             empty(self::$inlineClauses[$lastClause])
499
-                            && ! $shortGroup
499
+                            && !$shortGroup
500 500
                             && $this->options['parts_newline']
501 501
                         )
502 502
                     ) {
@@ -538,7 +538,7 @@  discard block
 block discarded – undo
538 538
                     if (
539 539
                         // A space after delimiters that are longer than 2 characters.
540 540
                         $prev->keyword === 'DELIMITER'
541
-                        || ! (
541
+                        || !(
542 542
                             ($prev->type === Token::TYPE_OPERATOR && ($prev->value === '.' || $prev->value === '('))
543 543
                             // No space after . (
544 544
                             || ($curr->type === Token::TYPE_OPERATOR
@@ -652,12 +652,12 @@  discard block
 block discarded – undo
652 652
         static $prev;
653 653
 
654 654
         foreach ($this->options['formats'] as $format) {
655
-            if ($token->type !== $format['type'] || ! (($token->flags & $format['flags']) === $format['flags'])) {
655
+            if ($token->type !== $format['type'] || !(($token->flags & $format['flags']) === $format['flags'])) {
656 656
                 continue;
657 657
             }
658 658
 
659 659
             // Running transformation function.
660
-            if (! empty($format['function'])) {
660
+            if (!empty($format['function'])) {
661 661
                 $func = $format['function'];
662 662
                 $text = $func($text);
663 663
             }
Please login to merge, or discard this patch.
src/Context.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -362,8 +362,8 @@  discard block
 block discarded – undo
362 362
         $upperString = strtoupper($string);
363 363
 
364 364
         if (
365
-            ! isset(static::$keywords[$upperString])
366
-            || ($isReserved && ! (static::$keywords[$upperString] & Token::FLAG_KEYWORD_RESERVED))
365
+            !isset(static::$keywords[$upperString])
366
+            || ($isReserved && !(static::$keywords[$upperString] & Token::FLAG_KEYWORD_RESERVED))
367 367
         ) {
368 368
             return null;
369 369
         }
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
             $context = self::$contextPrefix . $context;
538 538
         }
539 539
 
540
-        if (! class_exists($context)) {
540
+        if (!class_exists($context)) {
541 541
             return false;
542 542
         }
543 543
 
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
                 $i -= 2;
574 574
                 $part = substr($context, $i, 2);
575 575
                 /* No more numeric parts to strip */
576
-                if (! is_numeric($part)) {
576
+                if (!is_numeric($part)) {
577 577
                     break 2;
578 578
                 }
579 579
             } while (intval($part) === 0 && $i > 0);
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
             return $str;
749 749
         }
750 750
 
751
-        if ((static::$mode & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (! static::isKeyword($str, true))) {
751
+        if ((static::$mode & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (!static::isKeyword($str, true))) {
752 752
             return $str;
753 753
         }
754 754
 
Please login to merge, or discard this patch.
src/Tools/CustomJsonSerializer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
         'statementEndOptions',
22 22
         'keywordParsers',
23 23
         'statementParsers',
24
-        'keywordNameIndicators',// Not static
25
-        'operatorNameIndicators',// Not static
24
+        'keywordNameIndicators', // Not static
25
+        'operatorNameIndicators', // Not static
26 26
         'defaultDelimiter',
27 27
         'parserMethods',
28 28
         'OPTIONS',
Please login to merge, or discard this patch.
src/Components/Key.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -179,9 +179,9 @@  discard block
 block discarded – undo
179 179
             } elseif ($state === 1) {
180 180
                 if (($token->type === Token::TYPE_OPERATOR) && ($token->value === '(')) {
181 181
                     $positionBeforeSearch = $list->idx;
182
-                    $list->idx++;// Ignore the current token "(" or the search condition will always be true
182
+                    $list->idx++; // Ignore the current token "(" or the search condition will always be true
183 183
                     $nextToken = $list->getNext();
184
-                    $list->idx = $positionBeforeSearch;// Restore the position
184
+                    $list->idx = $positionBeforeSearch; // Restore the position
185 185
 
186 186
                     if ($nextToken !== null && $nextToken->value === '(') {
187 187
                         // Switch to expression mode
@@ -198,7 +198,7 @@  discard block
 block discarded – undo
198 198
                         $state = 3;
199 199
                     } elseif (($token->value === ',') || ($token->value === ')')) {
200 200
                         $state = $token->value === ',' ? 2 : 4;
201
-                        if (! empty($lastColumn)) {
201
+                        if (!empty($lastColumn)) {
202 202
                             $ret->columns[] = $lastColumn;
203 203
                             $lastColumn = [];
204 204
                         }
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
                 if ($token->type === Token::TYPE_OPERATOR) {
231 231
                     // This got back to here and we reached the end of the expression
232 232
                     if ($token->value === ')') {
233
-                        $state = 4;// go back to state 4 to fetch options
233
+                        $state = 4; // go back to state 4 to fetch options
234 234
                         continue;
235 235
                     }
236 236
 
@@ -270,7 +270,7 @@  discard block
 block discarded – undo
270 270
     public static function build($component, array $options = []): string
271 271
     {
272 272
         $ret = $component->type . ' ';
273
-        if (! empty($component->name)) {
273
+        if (!empty($component->name)) {
274 274
             $ret .= Context::escape($component->name) . ' ';
275 275
         }
276 276
 
Please login to merge, or discard this patch.
src/Components/WithKeyword.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,11 +51,11 @@
 block discarded – undo
51 51
      */
52 52
     public static function build($component, array $options = []): string
53 53
     {
54
-        if (! $component instanceof WithKeyword) {
54
+        if (!$component instanceof WithKeyword) {
55 55
             throw new RuntimeException('Can not build a component that is not a WithKeyword');
56 56
         }
57 57
 
58
-        if (! isset($component->statement)) {
58
+        if (!isset($component->statement)) {
59 59
             throw new RuntimeException('No statement inside WITH');
60 60
         }
61 61
 
Please login to merge, or discard this patch.
src/Components/IntoKeyword.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -267,7 +267,7 @@
 block discarded – undo
267 267
     public static function build($component, array $options = []): string
268 268
     {
269 269
         if ($component->dest instanceof Expression) {
270
-            $columns = ! empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : '';
270
+            $columns = !empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : '';
271 271
 
272 272
             return $component->dest . $columns;
273 273
         }
Please login to merge, or discard this patch.
src/Components/JoinKeyword.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
             }
189 189
         }
190 190
 
191
-        if (! empty($expr->type)) {
191
+        if (!empty($expr->type)) {
192 192
             $ret[] = $expr;
193 193
         }
194 194
 
@@ -206,9 +206,9 @@  discard block
 block discarded – undo
206 206
         $ret = [];
207 207
         foreach ($component as $c) {
208 208
             $ret[] = array_search($c->type, static::$joins) . ' ' . $c->expr
209
-                . (! empty($c->on)
209
+                . (!empty($c->on)
210 210
                     ? ' ON ' . Condition::build($c->on) : '')
211
-                . (! empty($c->using)
211
+                . (!empty($c->using)
212 212
                     ? ' USING ' . ArrayObj::build($c->using) : '');
213 213
         }
214 214
 
Please login to merge, or discard this patch.