Passed
Push — master ( aeb52d...73fc55 )
by William
03:24 queued 15s
created
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/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.
src/Components/AlterOperation.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -413,8 +413,8 @@  discard block
 block discarded – undo
413 413
                     } elseif (($token->value === ',') && ($brackets === 0)) {
414 414
                         break;
415 415
                     }
416
-                } elseif (! self::checkIfTokenQuotedSymbol($token)) {
417
-                    if (! empty(Parser::$statementParsers[$token->value])) {
416
+                } elseif (!self::checkIfTokenQuotedSymbol($token)) {
417
+                    if (!empty(Parser::$statementParsers[$token->value])) {
418 418
                         $list->idx++; // Ignore the current token
419 419
                         $nextToken = $list->getNext();
420 420
 
@@ -436,7 +436,7 @@  discard block
 block discarded – undo
436 436
                     } elseif (
437 437
                         (array_key_exists($arrayKey, self::$databaseOptions)
438 438
                         || array_key_exists($arrayKey, self::$tableOptions))
439
-                        && ! self::checkIfColumnDefinitionKeyword($arrayKey)
439
+                        && !self::checkIfColumnDefinitionKeyword($arrayKey)
440 440
                     ) {
441 441
                         // This alter operation has finished, which means a comma
442 442
                         // was missing before start of new alter operation
Please login to merge, or discard this patch.
src/Components/Expression.php 1 patch
Spacing   +17 added lines, -17 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
                     }
@@ -393,12 +393,12 @@  discard block
 block discarded – undo
393 393
 
394 394
                     $ret->expr .= $token->token;
395 395
                 }
396
-            } elseif (! $isExpr) {
396
+            } elseif (!$isExpr) {
397 397
                 if (($token->type === Token::TYPE_OPERATOR) && ($token->value === '.')) {
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.