Passed
Pull Request — master (#477)
by
unknown
21:18 queued 18:31
created
src/Utils/Formatter.php 1 patch
Spacing   +6 added lines, -6 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
                     ) {
@@ -532,7 +532,7 @@  discard block
 block discarded – undo
532 532
                     $lineEnded = false;
533 533
                 } elseif (
534 534
                     $prev->keyword === 'DELIMITER'
535
-                    || ! (
535
+                    || !(
536 536
                     ($prev->type === Token::TYPE_OPERATOR && ($prev->value === '.' || $prev->value === '('))
537 537
                     // No space after . (
538 538
                     || ($curr->type === Token::TYPE_OPERATOR
@@ -648,12 +648,12 @@  discard block
 block discarded – undo
648 648
         static $prev;
649 649
 
650 650
         foreach ($this->options['formats'] as $format) {
651
-            if ($token->type !== $format['type'] || ! (($token->flags & $format['flags']) === $format['flags'])) {
651
+            if ($token->type !== $format['type'] || !(($token->flags & $format['flags']) === $format['flags'])) {
652 652
                 continue;
653 653
             }
654 654
 
655 655
             // Running transformation function.
656
-            if (! empty($format['function'])) {
656
+            if (!empty($format['function'])) {
657 657
                 $func = $format['function'];
658 658
                 $text = $func($text);
659 659
             }
@@ -764,7 +764,7 @@  discard block
 block discarded – undo
764 764
      *
765 765
      * @psalm-return 1|2|false
766 766
      */
767
-    public static function isClause($token): int|false
767
+    public static function isClause($token): int | false
768 768
     {
769 769
         if (
770 770
             ($token->type === Token::TYPE_KEYWORD && isset(Parser::$statementParsers[$token->keyword]))
Please login to merge, or discard this patch.
src/Utils/Query.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -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,15 +331,15 @@  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
 
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
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 ($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
             }
@@ -847,7 +847,7 @@  discard block
 block discarded – undo
847 847
 
848 848
             $statement .= $token->token;
849 849
 
850
-            if (($token->type === Token::TYPE_DELIMITER) && ! empty($token->token)) {
850
+            if (($token->type === Token::TYPE_DELIMITER) && !empty($token->token)) {
851 851
                 $delimiter = $token->token;
852 852
                 $fullStatement = true;
853 853
                 break;
@@ -856,7 +856,7 @@  discard block
 block discarded – undo
856 856
 
857 857
         // No statement was found so we return the entire query as being the
858 858
         // remaining part.
859
-        if (! $fullStatement) {
859
+        if (!$fullStatement) {
860 860
             return [
861 861
                 null,
862 862
                 $query,
Please login to merge, or discard this patch.
src/Components/OptionsArray.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 
117 117
             if ($lastOption === null) {
118 118
                 $upper = strtoupper($token->token);
119
-                if (! isset($options[$upper])) {
119
+                if (!isset($options[$upper])) {
120 120
                     // There is no option to be processed.
121 121
                     break;
122 122
                 }
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
             }
154 154
 
155 155
             if ($state === 0) {
156
-                if (! is_array($lastOption)) {
156
+                if (!is_array($lastOption)) {
157 157
                     // This is a just keyword option without any value.
158 158
                     // This is the beginning and the end of it.
159 159
                     $ret->options[$lastOptionId] = $token->value;
@@ -230,7 +230,7 @@  discard block
 block discarded – undo
230 230
                 $ret->options[$lastOptionId]['expr'] .= $token->token;
231 231
 
232 232
                 if (
233
-                    ! (($token->token === '(') && ($brackets === 1)
233
+                    !(($token->token === '(') && ($brackets === 1)
234 234
                     || (($token->token === ')') && ($brackets === 0)))
235 235
                 ) {
236 236
                     // First pair of brackets is being skipped.
@@ -286,12 +286,12 @@  discard block
 block discarded – undo
286 286
 
287 287
         $options = [];
288 288
         foreach ($component->options as $option) {
289
-            if (! is_array($option)) {
289
+            if (!is_array($option)) {
290 290
                 $options[] = $option;
291 291
             } else {
292 292
                 $options[] = $option['name']
293
-                    . (! empty($option['equals']) ? '=' : ' ')
294
-                    . (! empty($option['expr']) ? $option['expr'] : $option['value']);
293
+                    . (!empty($option['equals']) ? '=' : ' ')
294
+                    . (!empty($option['expr']) ? $option['expr'] : $option['value']);
295 295
             }
296 296
         }
297 297
 
@@ -311,10 +311,10 @@  discard block
 block discarded – undo
311 311
     {
312 312
         foreach ($this->options as $option) {
313 313
             if (is_array($option)) {
314
-                if (! strcasecmp($key, $option['name'])) {
314
+                if (!strcasecmp($key, $option['name'])) {
315 315
                     return $getExpr ? $option['expr'] : $option['value'];
316 316
                 }
317
-            } elseif (! strcasecmp($key, $option)) {
317
+            } elseif (!strcasecmp($key, $option)) {
318 318
                 return true;
319 319
             }
320 320
         }
@@ -333,12 +333,12 @@  discard block
 block discarded – undo
333 333
     {
334 334
         foreach ($this->options as $idx => $option) {
335 335
             if (is_array($option)) {
336
-                if (! strcasecmp($key, $option['name'])) {
336
+                if (!strcasecmp($key, $option['name'])) {
337 337
                     unset($this->options[$idx]);
338 338
 
339 339
                     return true;
340 340
                 }
341
-            } elseif (! strcasecmp($key, $option)) {
341
+            } elseif (!strcasecmp($key, $option)) {
342 342
                 unset($this->options[$idx]);
343 343
 
344 344
                 return true;
Please login to merge, or discard this patch.
src/Components/Expression.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
         ];
203 203
 
204 204
         // When a field is parsed, no parentheses are expected.
205
-        if (! empty($options['parseField'])) {
205
+        if (!empty($options['parseField'])) {
206 206
             $options['breakOnParentheses'] = true;
207 207
             $options['field'] = $options['parseField'];
208 208
         }
@@ -229,14 +229,14 @@  discard block
 block discarded – undo
229 229
             }
230 230
 
231 231
             if ($token->type === Token::TYPE_KEYWORD) {
232
-                if (($brackets > 0) && empty($ret->subquery) && ! empty(Parser::$statementParsers[$token->keyword])) {
232
+                if (($brackets > 0) && empty($ret->subquery) && !empty(Parser::$statementParsers[$token->keyword])) {
233 233
                     // A `(` was previously found and this keyword is the
234 234
                     // beginning of a statement, so this is a subquery.
235 235
                     $ret->subquery = $token->keyword;
236 236
                 } elseif (
237 237
                     ($token->flags & Token::FLAG_KEYWORD_FUNCTION)
238 238
                     && (empty($options['parseField'])
239
-                    && ! $alias)
239
+                    && !$alias)
240 240
                 ) {
241 241
                     $isExpr = true;
242 242
                 } elseif (($token->flags & Token::FLAG_KEYWORD_RESERVED) && ($brackets === 0)) {
@@ -248,7 +248,7 @@  discard block
 block discarded – undo
248 248
                     }
249 249
 
250 250
                     if ($token->keyword === 'AS') {
251
-                        if (! empty($options['breakOnAlias'])) {
251
+                        if (!empty($options['breakOnAlias'])) {
252 252
                             break;
253 253
                         }
254 254
 
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                     }
272 272
 
273 273
                     $isExpr = true;
274
-                } elseif ($brackets === 0 && strlen((string) $ret->expr) > 0 && ! $alias) {
274
+                } elseif ($brackets === 0 && strlen((string) $ret->expr) > 0 && !$alias) {
275 275
                     /* End of expression */
276 276
                     break;
277 277
                 }
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
                 || (($token->type === Token::TYPE_OPERATOR)
288 288
                 && ($token->value !== '.'))
289 289
             ) {
290
-                if (! empty($options['parseField'])) {
290
+                if (!empty($options['parseField'])) {
291 291
                     break;
292 292
                 }
293 293
 
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
             }
298 298
 
299 299
             if ($token->type === Token::TYPE_OPERATOR) {
300
-                if (! empty($options['breakOnParentheses']) && (($token->value === '(') || ($token->value === ')'))) {
300
+                if (!empty($options['breakOnParentheses']) && (($token->value === '(') || ($token->value === ')'))) {
301 301
                     // No brackets were expected.
302 302
                     break;
303 303
                 }
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
 
322 322
                     --$brackets;
323 323
                     if ($brackets === 0) {
324
-                        if (! empty($options['parenthesesDelimited'])) {
324
+                        if (!empty($options['parenthesesDelimited'])) {
325 325
                             // The current token is the last bracket, the next
326 326
                             // one will be outside the expression.
327 327
                             $ret->expr .= $token->token;
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 
348 348
             if ($alias) {
349 349
                 // An alias is expected (the keyword `AS` was previously found).
350
-                if (! empty($ret->alias)) {
350
+                if (!empty($ret->alias)) {
351 351
                     $parser->error('An alias was previously found.', $token);
352 352
                     break;
353 353
                 }
@@ -361,13 +361,13 @@  discard block
 block discarded – undo
361 361
                     && ($prev[0] === null
362 362
                         || (($prev[0]->type !== Token::TYPE_OPERATOR || $prev[0]->token === ')')
363 363
                             && ($prev[0]->type !== Token::TYPE_KEYWORD
364
-                                || ! ($prev[0]->flags & Token::FLAG_KEYWORD_RESERVED))))
364
+                                || !($prev[0]->flags & Token::FLAG_KEYWORD_RESERVED))))
365 365
                     && (($prev[1]->type === Token::TYPE_STRING)
366 366
                         || ($prev[1]->type === Token::TYPE_SYMBOL
367
-                            && ! ($prev[1]->flags & Token::FLAG_SYMBOL_VARIABLE))
367
+                            && !($prev[1]->flags & Token::FLAG_SYMBOL_VARIABLE))
368 368
                         || ($prev[1]->type === Token::TYPE_NONE))
369 369
                 ) {
370
-                    if (! empty($ret->alias)) {
370
+                    if (!empty($ret->alias)) {
371 371
                         $parser->error('An alias was previously found.', $token);
372 372
                         break;
373 373
                     }
@@ -398,7 +398,7 @@  discard block
 block discarded – undo
398 398
                     // Found a `.` which means we expect a column name and
399 399
                     // the column name we parsed is actually the table name
400 400
                     // and the table name is actually a database name.
401
-                    if (! empty($ret->database) || $dot) {
401
+                    if (!empty($ret->database) || $dot) {
402 402
                         $parser->error('Unexpected dot.', $token);
403 403
                     }
404 404
 
@@ -415,11 +415,11 @@  discard block
 block discarded – undo
415 415
                         $dot = false;
416 416
                     } else {
417 417
                         // No alias is expected.
418
-                        if (! empty($options['breakOnAlias'])) {
418
+                        if (!empty($options['breakOnAlias'])) {
419 419
                             break;
420 420
                         }
421 421
 
422
-                        if (! empty($ret->alias)) {
422
+                        if (!empty($ret->alias)) {
423 423
                             $parser->error('An alias was previously found.', $token);
424 424
                             break;
425 425
                         }
@@ -475,7 +475,7 @@  discard block
 block discarded – undo
475 475
             $ret = implode('.', Context::escape($fields));
476 476
         }
477 477
 
478
-        if (! empty($component->alias)) {
478
+        if (!empty($component->alias)) {
479 479
             $ret .= ' AS ' . Context::escape($component->alias);
480 480
         }
481 481
 
Please login to merge, or discard this patch.