@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | break; |
| 134 | 134 | } |
| 135 | 135 | } elseif ($state === 2) { |
| 136 | - if (! ($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS')) { |
|
| 136 | + if (!($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS')) { |
|
| 137 | 137 | $parser->error('AS keyword was expected.', $token); |
| 138 | 138 | break; |
| 139 | 139 | } |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | $list->idx++; // Ignore the current token |
| 146 | 146 | $nextKeyword = $list->getNext(); |
| 147 | 147 | |
| 148 | - if (! ($token->value === '(' && ($nextKeyword && $nextKeyword->value === 'SELECT'))) { |
|
| 148 | + if (!($token->value === '(' && ($nextKeyword && $nextKeyword->value === 'SELECT'))) { |
|
| 149 | 149 | $parser->error('Subquery of the CTE was expected.', $token); |
| 150 | 150 | $list->idx = $idxBeforeGetNext; |
| 151 | 151 | break; |
@@ -295,7 +295,7 @@ discard block |
||
| 295 | 295 | /** |
| 296 | 296 | * Get tokens within the WITH expression to use them in another parser |
| 297 | 297 | */ |
| 298 | - private function getSubTokenList(TokensList $list): ParserException|TokensList |
|
| 298 | + private function getSubTokenList(TokensList $list): ParserException | TokensList |
|
| 299 | 299 | { |
| 300 | 300 | $idx = $list->idx; |
| 301 | 301 | $token = $list->tokens[$list->idx]; |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | } |
| 312 | 312 | |
| 313 | 313 | ++$list->idx; |
| 314 | - if (! isset($list->tokens[$list->idx])) { |
|
| 314 | + if (!isset($list->tokens[$list->idx])) { |
|
| 315 | 315 | break; |
| 316 | 316 | } |
| 317 | 317 | |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | { |
| 40 | 40 | foreach ($longopts as $value) { |
| 41 | 41 | $value = rtrim($value, ':'); |
| 42 | - if (! isset($params[$value])) { |
|
| 42 | + if (!isset($params[$value])) { |
|
| 43 | 43 | continue; |
| 44 | 44 | } |
| 45 | 45 | |
@@ -62,7 +62,7 @@ discard block |
||
| 62 | 62 | * |
| 63 | 63 | * @return string[]|false[]|false |
| 64 | 64 | */ |
| 65 | - public function getopt($opt, $long): array|false |
|
| 65 | + public function getopt($opt, $long): array | false |
|
| 66 | 66 | { |
| 67 | 67 | return getopt($opt, $long); |
| 68 | 68 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | /** |
| 71 | 71 | * @return string[]|false[]|false |
| 72 | 72 | */ |
| 73 | - public function parseHighlight(): array|false |
|
| 73 | + public function parseHighlight(): array | false |
|
| 74 | 74 | { |
| 75 | 75 | $longopts = [ |
| 76 | 76 | 'help', |
@@ -84,11 +84,11 @@ discard block |
||
| 84 | 84 | } |
| 85 | 85 | |
| 86 | 86 | $this->mergeLongOpts($params, $longopts); |
| 87 | - if (! isset($params['f'])) { |
|
| 87 | + if (!isset($params['f'])) { |
|
| 88 | 88 | $params['f'] = 'cli'; |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | - if (! in_array($params['f'], ['html', 'cli', 'text'])) { |
|
| 91 | + if (!in_array($params['f'], ['html', 'cli', 'text'])) { |
|
| 92 | 92 | echo "ERROR: Invalid value for format!\n"; |
| 93 | 93 | |
| 94 | 94 | return false; |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | return 0; |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - if (! isset($params['q'])) { |
|
| 116 | + if (!isset($params['q'])) { |
|
| 117 | 117 | $stdIn = $this->readStdin(); |
| 118 | 118 | |
| 119 | 119 | if ($stdIn) { |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | /** |
| 154 | 154 | * @return string[]|false[]|false |
| 155 | 155 | */ |
| 156 | - public function parseLint(): array|false |
|
| 156 | + public function parseLint(): array | false |
|
| 157 | 157 | { |
| 158 | 158 | $longopts = [ |
| 159 | 159 | 'help', |
@@ -187,7 +187,7 @@ discard block |
||
| 187 | 187 | Context::load($params['c']); |
| 188 | 188 | } |
| 189 | 189 | |
| 190 | - if (! isset($params['q'])) { |
|
| 190 | + if (!isset($params['q'])) { |
|
| 191 | 191 | $stdIn = $this->readStdin(); |
| 192 | 192 | |
| 193 | 193 | if ($stdIn) { |
@@ -232,7 +232,7 @@ discard block |
||
| 232 | 232 | /** |
| 233 | 233 | * @return string[]|false[]|false |
| 234 | 234 | */ |
| 235 | - public function parseTokenize(): array|false |
|
| 235 | + public function parseTokenize(): array | false |
|
| 236 | 236 | { |
| 237 | 237 | $longopts = [ |
| 238 | 238 | 'help', |
@@ -261,7 +261,7 @@ discard block |
||
| 261 | 261 | return 0; |
| 262 | 262 | } |
| 263 | 263 | |
| 264 | - if (! isset($params['q'])) { |
|
| 264 | + if (!isset($params['q'])) { |
|
| 265 | 265 | $stdIn = $this->readStdin(); |
| 266 | 266 | |
| 267 | 267 | if ($stdIn) { |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | return 1; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | - public function readStdin(): string|false|null |
|
| 300 | + public function readStdin(): string | false | null |
|
| 301 | 301 | { |
| 302 | 302 | $read = [STDIN]; |
| 303 | 303 | $write = []; |
@@ -149,14 +149,14 @@ |
||
| 149 | 149 | * |
| 150 | 150 | * @var Expression[]|null |
| 151 | 151 | */ |
| 152 | - public array|null $columnNamesOrUserVariables = null; |
|
| 152 | + public array | null $columnNamesOrUserVariables = null; |
|
| 153 | 153 | |
| 154 | 154 | /** |
| 155 | 155 | * SET clause's updated values(optional). |
| 156 | 156 | * |
| 157 | 157 | * @var SetOperation[]|null |
| 158 | 158 | */ |
| 159 | - public array|null $set = null; |
|
| 159 | + public array | null $set = null; |
|
| 160 | 160 | |
| 161 | 161 | /** |
| 162 | 162 | * Ignore 'number' LINES/ROWS. |
@@ -106,28 +106,28 @@ discard block |
||
| 106 | 106 | * |
| 107 | 107 | * @var Expression[]|null |
| 108 | 108 | */ |
| 109 | - public array|null $from = null; |
|
| 109 | + public array | null $from = null; |
|
| 110 | 110 | |
| 111 | 111 | /** |
| 112 | 112 | * Joins. |
| 113 | 113 | * |
| 114 | 114 | * @var JoinKeyword[]|null |
| 115 | 115 | */ |
| 116 | - public array|null $join = null; |
|
| 116 | + public array | null $join = null; |
|
| 117 | 117 | |
| 118 | 118 | /** |
| 119 | 119 | * Tables used as sources for this statement. |
| 120 | 120 | * |
| 121 | 121 | * @var Expression[]|null |
| 122 | 122 | */ |
| 123 | - public array|null $using = null; |
|
| 123 | + public array | null $using = null; |
|
| 124 | 124 | |
| 125 | 125 | /** |
| 126 | 126 | * Columns used in this statement. |
| 127 | 127 | * |
| 128 | 128 | * @var Expression[]|null |
| 129 | 129 | */ |
| 130 | - public array|null $columns = null; |
|
| 130 | + public array | null $columns = null; |
|
| 131 | 131 | |
| 132 | 132 | /** |
| 133 | 133 | * Partitions used as source for this statement. |
@@ -141,14 +141,14 @@ discard block |
||
| 141 | 141 | * |
| 142 | 142 | * @var Condition[]|null |
| 143 | 143 | */ |
| 144 | - public array|null $where = null; |
|
| 144 | + public array | null $where = null; |
|
| 145 | 145 | |
| 146 | 146 | /** |
| 147 | 147 | * Specifies the order of the rows in the result set. |
| 148 | 148 | * |
| 149 | 149 | * @var OrderKeyword[]|null |
| 150 | 150 | */ |
| 151 | - public array|null $order = null; |
|
| 151 | + public array | null $order = null; |
|
| 152 | 152 | |
| 153 | 153 | /** |
| 154 | 154 | * Conditions used for limiting the size of the result set. |
@@ -391,28 +391,28 @@ discard block |
||
| 391 | 391 | $expressions = $this->from; |
| 392 | 392 | |
| 393 | 393 | // Adding expressions from JOIN. |
| 394 | - if (! empty($this->join)) { |
|
| 394 | + if (!empty($this->join)) { |
|
| 395 | 395 | foreach ($this->join as $join) { |
| 396 | 396 | $expressions[] = $join->expr; |
| 397 | 397 | } |
| 398 | 398 | } |
| 399 | 399 | |
| 400 | 400 | foreach ($expressions as $expr) { |
| 401 | - if (! isset($expr->table) || ($expr->table === '')) { |
|
| 401 | + if (!isset($expr->table) || ($expr->table === '')) { |
|
| 402 | 402 | continue; |
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | $thisDb = isset($expr->database) && ($expr->database !== '') ? |
| 406 | 406 | $expr->database : $database; |
| 407 | 407 | |
| 408 | - if (! isset($retval[$thisDb])) { |
|
| 408 | + if (!isset($retval[$thisDb])) { |
|
| 409 | 409 | $retval[$thisDb] = [ |
| 410 | 410 | 'alias' => null, |
| 411 | 411 | 'tables' => [], |
| 412 | 412 | ]; |
| 413 | 413 | } |
| 414 | 414 | |
| 415 | - if (! isset($retval[$thisDb]['tables'][$expr->table])) { |
|
| 415 | + if (!isset($retval[$thisDb]['tables'][$expr->table])) { |
|
| 416 | 416 | $retval[$thisDb]['tables'][$expr->table] = [ |
| 417 | 417 | 'alias' => isset($expr->alias) && ($expr->alias !== '') ? |
| 418 | 418 | $expr->alias : null, |
@@ -420,7 +420,7 @@ discard block |
||
| 420 | 420 | ]; |
| 421 | 421 | } |
| 422 | 422 | |
| 423 | - if (! isset($tables[$thisDb])) { |
|
| 423 | + if (!isset($tables[$thisDb])) { |
|
| 424 | 424 | $tables[$thisDb] = []; |
| 425 | 425 | } |
| 426 | 426 | |
@@ -428,7 +428,7 @@ discard block |
||
| 428 | 428 | } |
| 429 | 429 | |
| 430 | 430 | foreach ($this->expr as $expr) { |
| 431 | - if (! isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) { |
|
| 431 | + if (!isset($expr->column, $expr->alias) || ($expr->column === '') || ($expr->alias === '')) { |
|
| 432 | 432 | continue; |
| 433 | 433 | } |
| 434 | 434 | |
@@ -20,17 +20,17 @@ discard block |
||
| 20 | 20 | /** |
| 21 | 21 | * The type of hint (USE/FORCE/IGNORE) |
| 22 | 22 | */ |
| 23 | - public string|null $type; |
|
| 23 | + public string | null $type; |
|
| 24 | 24 | |
| 25 | 25 | /** |
| 26 | 26 | * What the hint is for (INDEX/KEY) |
| 27 | 27 | */ |
| 28 | - public string|null $indexOrKey; |
|
| 28 | + public string | null $indexOrKey; |
|
| 29 | 29 | |
| 30 | 30 | /** |
| 31 | 31 | * The clause for which this hint is (JOIN/ORDER BY/GROUP BY) |
| 32 | 32 | */ |
| 33 | - public string|null $for; |
|
| 33 | + public string | null $for; |
|
| 34 | 34 | |
| 35 | 35 | /** |
| 36 | 36 | * List of indexes in this hint |
@@ -46,9 +46,9 @@ discard block |
||
| 46 | 46 | * @param Expression[] $indexes List of indexes in this hint |
| 47 | 47 | */ |
| 48 | 48 | public function __construct( |
| 49 | - string|null $type = null, |
|
| 50 | - string|null $indexOrKey = null, |
|
| 51 | - string|null $for = null, |
|
| 49 | + string | null $type = null, |
|
| 50 | + string | null $indexOrKey = null, |
|
| 51 | + string | null $for = null, |
|
| 52 | 52 | array $indexes = [] |
| 53 | 53 | ) { |
| 54 | 54 | $this->type = $type; |
@@ -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])) |
@@ -300,23 +300,23 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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, |