@@ -413,8 +413,8 @@ discard block |
||
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 |
||
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 |
@@ -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::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 |
@@ -89,7 +89,7 @@ |
||
89 | 89 | if ($token->type === Token::TYPE_OPERATOR && $token->value === '(') { |
90 | 90 | --$list->idx; // ArrayObj needs to start with `(` |
91 | 91 | $state = 1; |
92 | - continue;// do not add this token to the name |
|
92 | + continue; // do not add this token to the name |
|
93 | 93 | } |
94 | 94 | |
95 | 95 | $ret->name .= $token->value; |
@@ -63,7 +63,7 @@ |
||
63 | 63 | * |
64 | 64 | * @var Array2d[]|null |
65 | 65 | */ |
66 | - public array|null $values = null; |
|
66 | + public array | null $values = null; |
|
67 | 67 | |
68 | 68 | /** |
69 | 69 | * If SET clause is present |
@@ -47,8 +47,8 @@ discard block |
||
47 | 47 | } |
48 | 48 | |
49 | 49 | // Flags. |
50 | - return ! isset($pattern['flags']) |
|
51 | - || (! (($pattern['flags'] & $token->flags) === 0)); |
|
50 | + return !isset($pattern['flags']) |
|
51 | + || (!(($pattern['flags'] & $token->flags) === 0)); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -56,17 +56,17 @@ discard block |
||
56 | 56 | * @param Token[] $replace |
57 | 57 | */ |
58 | 58 | public static function replaceTokens( |
59 | - TokensList|string|UtfString $list, |
|
59 | + TokensList | string | UtfString $list, |
|
60 | 60 | array $find, |
61 | 61 | array $replace |
62 | - ): TokensList|string { |
|
62 | + ): TokensList | string { |
|
63 | 63 | /** |
64 | 64 | * Whether the first parameter is a list. |
65 | 65 | */ |
66 | 66 | $isList = $list instanceof TokensList; |
67 | 67 | |
68 | 68 | // Parsing the tokens. |
69 | - if (! $isList) { |
|
69 | + if (!$isList) { |
|
70 | 70 | $list = Lexer::getTokens($list); |
71 | 71 | } |
72 | 72 | |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | ++$j; |
125 | 125 | } |
126 | 126 | |
127 | - if (! static::match($list->tokens[$j], $find[$k])) { |
|
127 | + if (!static::match($list->tokens[$j], $find[$k])) { |
|
128 | 128 | // This token does not match the pattern. |
129 | 129 | break; |
130 | 130 | } |
@@ -30,7 +30,7 @@ |
||
30 | 30 | * |
31 | 31 | * @dataProvider contextLoadingProvider |
32 | 32 | */ |
33 | - public function testLoadClosest(string $context, string|null $expected): void |
|
33 | + public function testLoadClosest(string $context, string | null $expected): void |
|
34 | 34 | { |
35 | 35 | $this->assertEquals($expected, Context::loadClosest($context)); |
36 | 36 | if ($expected !== null) { |
@@ -86,7 +86,7 @@ |
||
86 | 86 | * |
87 | 87 | * @dataProvider utf8StringsProvider |
88 | 88 | */ |
89 | - public function testAccess(string $text, string|null $pos10, string|null $pos20): void |
|
89 | + public function testAccess(string $text, string | null $pos10, string | null $pos20): void |
|
90 | 90 | { |
91 | 91 | $str = new UtfString($text); |
92 | 92 | $this->assertEquals($pos10, $str->offsetGet(10)); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | * @param Parser|null $parser the instance that requests parsing |
103 | 103 | * @param TokensList|null $list the list of tokens to be parsed |
104 | 104 | */ |
105 | - public function __construct(Parser|null $parser = null, TokensList|null $list = null) |
|
105 | + public function __construct(Parser | null $parser = null, TokensList | null $list = null) |
|
106 | 106 | { |
107 | 107 | if (($parser === null) || ($list === null)) { |
108 | 108 | return; |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | |
182 | 182 | // Checking if this field was already built. |
183 | 183 | if ($type & 1) { |
184 | - if (! empty($built[$field])) { |
|
184 | + if (!empty($built[$field])) { |
|
185 | 185 | continue; |
186 | 186 | } |
187 | 187 | |
@@ -194,7 +194,7 @@ discard block |
||
194 | 194 | } |
195 | 195 | |
196 | 196 | // Checking if the result of the builder should be added. |
197 | - if (! ($type & 1)) { |
|
197 | + if (!($type & 1)) { |
|
198 | 198 | continue; |
199 | 199 | } |
200 | 200 | |
@@ -318,8 +318,8 @@ discard block |
||
318 | 318 | $options = []; |
319 | 319 | |
320 | 320 | // Looking for duplicated clauses. |
321 | - if (! empty(Parser::$keywordParsers[$token->value]) || ! empty(Parser::$statementParsers[$token->value])) { |
|
322 | - if (! empty($parsedClauses[$token->value])) { |
|
321 | + if (!empty(Parser::$keywordParsers[$token->value]) || !empty(Parser::$statementParsers[$token->value])) { |
|
322 | + if (!empty($parsedClauses[$token->value])) { |
|
323 | 323 | $parser->error('This type of clause was previously parsed.', $token); |
324 | 324 | break; |
325 | 325 | } |
@@ -332,18 +332,18 @@ discard block |
||
332 | 332 | // but it might be the beginning of a statement of truncate, |
333 | 333 | // so let the value use the keyword field for truncate type. |
334 | 334 | $tokenValue = in_array($token->keyword, ['TRUNCATE']) ? $token->keyword : $token->value; |
335 | - if (! empty(Parser::$keywordParsers[$tokenValue]) && $list->idx < $list->count) { |
|
335 | + if (!empty(Parser::$keywordParsers[$tokenValue]) && $list->idx < $list->count) { |
|
336 | 336 | $class = Parser::$keywordParsers[$tokenValue]['class']; |
337 | 337 | $field = Parser::$keywordParsers[$tokenValue]['field']; |
338 | - if (! empty(Parser::$keywordParsers[$tokenValue]['options'])) { |
|
338 | + if (!empty(Parser::$keywordParsers[$tokenValue]['options'])) { |
|
339 | 339 | $options = Parser::$keywordParsers[$tokenValue]['options']; |
340 | 340 | } |
341 | 341 | } |
342 | 342 | |
343 | 343 | // Checking if this is the beginning of the statement. |
344 | - if (! empty(Parser::$statementParsers[$token->keyword])) { |
|
344 | + if (!empty(Parser::$statementParsers[$token->keyword])) { |
|
345 | 345 | if ( |
346 | - ! empty(static::$clauses) // Undefined for some statements. |
|
346 | + !empty(static::$clauses) // Undefined for some statements. |
|
347 | 347 | && empty(static::$clauses[$token->value]) |
348 | 348 | ) { |
349 | 349 | // Some keywords (e.g. `SET`) may be the beginning of a |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | break; |
359 | 359 | } |
360 | 360 | |
361 | - if (! $parsedOptions) { |
|
361 | + if (!$parsedOptions) { |
|
362 | 362 | if (empty(static::$statementOptions[$token->value])) { |
363 | 363 | // Skipping keyword because if it is not a option. |
364 | 364 | ++$list->idx; |
@@ -530,7 +530,7 @@ discard block |
||
530 | 530 | if ($minJoin === 0 && stripos($clauseType, 'JOIN')) { |
531 | 531 | // First JOIN clause is detected |
532 | 532 | $minJoin = $maxJoin = $clauseStartIdx; |
533 | - } elseif ($minJoin !== 0 && ! stripos($clauseType, 'JOIN')) { |
|
533 | + } elseif ($minJoin !== 0 && !stripos($clauseType, 'JOIN')) { |
|
534 | 534 | // After a previous JOIN clause, a non-JOIN clause has been detected |
535 | 535 | $maxJoin = $lastIdx; |
536 | 536 | } elseif ($maxJoin < $clauseStartIdx && stripos($clauseType, 'JOIN')) { |
@@ -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); |
@@ -748,7 +748,7 @@ discard block |
||
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 | |
@@ -776,7 +776,7 @@ discard block |
||
776 | 776 | * |
777 | 777 | * @return bool false on empty param, true/false on given constant/int value |
778 | 778 | */ |
779 | - public static function hasMode(int|null $flag = null): bool |
|
779 | + public static function hasMode(int | null $flag = null): bool |
|
780 | 780 | { |
781 | 781 | if (empty($flag)) { |
782 | 782 | return false; |