@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | $list->idx = $lastIdx; |
497 | 497 | } elseif (empty(static::$statementParsers[$token->keyword])) { |
498 | 498 | // Checking if it is a known statement that can be parsed. |
499 | - if (! isset(static::$statementParsers[$token->keyword])) { |
|
499 | + if (!isset(static::$statementParsers[$token->keyword])) { |
|
500 | 500 | // A statement is considered recognized if the parser |
501 | 501 | // is aware that it is a statement, but it does not have |
502 | 502 | // a parser for it yet. |
@@ -536,7 +536,7 @@ discard block |
||
536 | 536 | |
537 | 537 | // Handles unions. |
538 | 538 | if ( |
539 | - ! empty($unionType) |
|
539 | + !empty($unionType) |
|
540 | 540 | && ($lastStatement instanceof SelectStatement) |
541 | 541 | && ($statement instanceof SelectStatement) |
542 | 542 | ) { |
@@ -623,7 +623,7 @@ discard block |
||
623 | 623 | * |
624 | 624 | * @throws ParserException throws the exception, if strict mode is enabled. |
625 | 625 | */ |
626 | - public function error($msg, Token|null $token = null, $code = 0): void |
|
626 | + public function error($msg, Token | null $token = null, $code = 0): void |
|
627 | 627 | { |
628 | 628 | $error = new ParserException( |
629 | 629 | Translator::gettext($msg), |
@@ -436,7 +436,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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])) |
@@ -357,13 +357,13 @@ discard block |
||
357 | 357 | * |
358 | 358 | * @param bool $isReserved checks if the keyword is reserved |
359 | 359 | */ |
360 | - public static function isKeyword(string $string, bool $isReserved = false): int|null |
|
360 | + public static function isKeyword(string $string, bool $isReserved = false): int | null |
|
361 | 361 | { |
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 | } |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | /** |
375 | 375 | * Checks if the given string is an operator and returns the appropriate flag for the operator. |
376 | 376 | */ |
377 | - public static function isOperator(string $string): int|null |
|
377 | + public static function isOperator(string $string): int | null |
|
378 | 378 | { |
379 | 379 | return static::$operators[$string] ?? null; |
380 | 380 | } |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | * |
393 | 393 | * @return int|null the appropriate flag for the comment type |
394 | 394 | */ |
395 | - public static function isComment(string $string, bool $end = false): int|null |
|
395 | + public static function isComment(string $string, bool $end = false): int | null |
|
396 | 396 | { |
397 | 397 | if ($string === '') { |
398 | 398 | return null; |
@@ -455,7 +455,7 @@ discard block |
||
455 | 455 | * |
456 | 456 | * @return int|null the appropriate flag for the symbol type |
457 | 457 | */ |
458 | - public static function isSymbol(string $string): int|null |
|
458 | + public static function isSymbol(string $string): int | null |
|
459 | 459 | { |
460 | 460 | if ($string === '') { |
461 | 461 | return null; |
@@ -483,7 +483,7 @@ discard block |
||
483 | 483 | * |
484 | 484 | * @return int|null the appropriate flag for the string type |
485 | 485 | */ |
486 | - public static function isString(string $string): int|null |
|
486 | + public static function isString(string $string): int | null |
|
487 | 487 | { |
488 | 488 | if ($string === '') { |
489 | 489 | return null; |
@@ -537,7 +537,7 @@ discard block |
||
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 | |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | * |
560 | 560 | * @return string|null The loaded context. `null` if no context was loaded. |
561 | 561 | */ |
562 | - public static function loadClosest(string $context = ''): string|null |
|
562 | + public static function loadClosest(string $context = ''): string | null |
|
563 | 563 | { |
564 | 564 | $length = strlen($context); |
565 | 565 | for ($i = $length; $i > 0;) { |
@@ -573,7 +573,7 @@ discard block |
||
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); |
@@ -675,7 +675,7 @@ discard block |
||
675 | 675 | */ |
676 | 676 | public static function escape(string $str, string $quote = '`') |
677 | 677 | { |
678 | - if ((static::$mode & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (! static::isKeyword($str, true))) { |
|
678 | + if ((static::$mode & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (!static::isKeyword($str, true))) { |
|
679 | 679 | return $str; |
680 | 680 | } |
681 | 681 | |
@@ -719,7 +719,7 @@ discard block |
||
719 | 719 | * |
720 | 720 | * @return bool false on empty param, true/false on given constant/int value |
721 | 721 | */ |
722 | - public static function hasMode(int|null $flag = null): bool |
|
722 | + public static function hasMode(int | null $flag = null): bool |
|
723 | 723 | { |
724 | 724 | if (empty($flag)) { |
725 | 725 | return false; |
@@ -202,7 +202,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
475 | 475 | $ret = implode('.', Context::escapeAll($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 |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | $state = 4; |
244 | 244 | } elseif ($token->type === Token::TYPE_SYMBOL || $token->type === Token::TYPE_NONE) { |
245 | 245 | $expr->name = $token->value; |
246 | - if (! $expr->isConstraint) { |
|
246 | + if (!$expr->isConstraint) { |
|
247 | 247 | $state = 2; |
248 | 248 | } |
249 | 249 | } elseif ($token->type === Token::TYPE_KEYWORD) { |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | |
285 | 285 | $state = 5; |
286 | 286 | } elseif ($state === 5) { |
287 | - if (! empty($expr->type) || ! empty($expr->key)) { |
|
287 | + if (!empty($expr->type) || !empty($expr->key)) { |
|
288 | 288 | $ret[] = $expr; |
289 | 289 | } |
290 | 290 | |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | } |
305 | 305 | |
306 | 306 | // Last iteration was not saved. |
307 | - if (! empty($expr->type) || ! empty($expr->key)) { |
|
307 | + if (!empty($expr->type) || !empty($expr->key)) { |
|
308 | 308 | $ret[] = $expr; |
309 | 309 | } |
310 | 310 | |
@@ -336,16 +336,16 @@ discard block |
||
336 | 336 | $tmp .= Context::escape($component->name) . ' '; |
337 | 337 | } |
338 | 338 | |
339 | - if (! empty($component->type)) { |
|
339 | + if (!empty($component->type)) { |
|
340 | 340 | $component->type->lowercase = true; |
341 | 341 | $tmp .= DataType::build($component->type) . ' '; |
342 | 342 | } |
343 | 343 | |
344 | - if (! empty($component->key)) { |
|
344 | + if (!empty($component->key)) { |
|
345 | 345 | $tmp .= $component->key . ' '; |
346 | 346 | } |
347 | 347 | |
348 | - if (! empty($component->references)) { |
|
348 | + if (!empty($component->references)) { |
|
349 | 349 | $tmp .= 'REFERENCES ' . $component->references . ' '; |
350 | 350 | } |
351 | 351 |
@@ -264,7 +264,7 @@ |
||
264 | 264 | public static function build($component): string |
265 | 265 | { |
266 | 266 | if ($component->dest instanceof Expression) { |
267 | - $columns = ! empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
267 | + $columns = !empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
268 | 268 | |
269 | 269 | return $component->dest . $columns; |
270 | 270 | } |
@@ -179,9 +179,9 @@ discard block |
||
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 |
@@ -230,7 +230,7 @@ discard block |
||
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 | |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | public static function build($component): string |
270 | 270 | { |
271 | 271 | $ret = $component->type . ' '; |
272 | - if (! empty($component->name)) { |
|
272 | + if (!empty($component->name)) { |
|
273 | 273 | $ret .= Context::escape($component->name) . ' '; |
274 | 274 | } |
275 | 275 |
@@ -145,7 +145,7 @@ |
||
145 | 145 | public static function build($component): string |
146 | 146 | { |
147 | 147 | $tmp = ''; |
148 | - if (! empty($component->inOut)) { |
|
148 | + if (!empty($component->inOut)) { |
|
149 | 149 | $tmp .= $component->inOut . ' '; |
150 | 150 | } |
151 | 151 |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | } |
191 | 191 | } |
192 | 192 | |
193 | - if (! empty($expr->type)) { |
|
193 | + if (!empty($expr->type)) { |
|
194 | 194 | $ret[] = $expr; |
195 | 195 | } |
196 | 196 | |
@@ -212,9 +212,9 @@ discard block |
||
212 | 212 | $ret = []; |
213 | 213 | foreach ($component as $c) { |
214 | 214 | $ret[] = array_search($c->type, static::$joins) . ' ' . $c->expr |
215 | - . (! empty($c->on) |
|
215 | + . (!empty($c->on) |
|
216 | 216 | ? ' ON ' . Condition::buildAll($c->on) : '') |
217 | - . (! empty($c->using) |
|
217 | + . (!empty($c->using) |
|
218 | 218 | ? ' USING ' . ArrayObj::build($c->using) : ''); |
219 | 219 | } |
220 | 220 |