@@ -499,7 +499,7 @@ discard block |
||
| 499 | 499 | } else { |
| 500 | 500 | // Checking if it is a known statement that can be parsed. |
| 501 | 501 | if (empty(static::$statementParsers[$token->keyword])) { |
| 502 | - if (! isset(static::$statementParsers[$token->keyword])) { |
|
| 502 | + if (!isset(static::$statementParsers[$token->keyword])) { |
|
| 503 | 503 | // A statement is considered recognized if the parser |
| 504 | 504 | // is aware that it is a statement, but it does not have |
| 505 | 505 | // a parser for it yet. |
@@ -540,7 +540,7 @@ discard block |
||
| 540 | 540 | |
| 541 | 541 | // Handles unions. |
| 542 | 542 | if ( |
| 543 | - ! empty($unionType) |
|
| 543 | + !empty($unionType) |
|
| 544 | 544 | && ($lastStatement instanceof SelectStatement) |
| 545 | 545 | && ($statement instanceof SelectStatement) |
| 546 | 546 | ) { |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | |
| 183 | 183 | // Checking if this field was already built. |
| 184 | 184 | if ($type & 1) { |
| 185 | - if (! empty($built[$field])) { |
|
| 185 | + if (!empty($built[$field])) { |
|
| 186 | 186 | continue; |
| 187 | 187 | } |
| 188 | 188 | |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | // Checking if the result of the builder should be added. |
| 198 | - if (! ($type & 1)) { |
|
| 198 | + if (!($type & 1)) { |
|
| 199 | 199 | continue; |
| 200 | 200 | } |
| 201 | 201 | |
@@ -319,8 +319,8 @@ discard block |
||
| 319 | 319 | $options = []; |
| 320 | 320 | |
| 321 | 321 | // Looking for duplicated clauses. |
| 322 | - if (! empty(Parser::$keywordParsers[$token->value]) || ! empty(Parser::$statementParsers[$token->value])) { |
|
| 323 | - if (! empty($parsedClauses[$token->value])) { |
|
| 322 | + if (!empty(Parser::$keywordParsers[$token->value]) || !empty(Parser::$statementParsers[$token->value])) { |
|
| 323 | + if (!empty($parsedClauses[$token->value])) { |
|
| 324 | 324 | $parser->error('This type of clause was previously parsed.', $token); |
| 325 | 325 | break; |
| 326 | 326 | } |
@@ -333,18 +333,18 @@ discard block |
||
| 333 | 333 | // but it might be the beginning of a statement of truncate, |
| 334 | 334 | // so let the value use the keyword field for truncate type. |
| 335 | 335 | $tokenValue = in_array($token->keyword, ['TRUNCATE']) ? $token->keyword : $token->value; |
| 336 | - if (! empty(Parser::$keywordParsers[$tokenValue]) && $list->idx < $list->count) { |
|
| 336 | + if (!empty(Parser::$keywordParsers[$tokenValue]) && $list->idx < $list->count) { |
|
| 337 | 337 | $class = Parser::$keywordParsers[$tokenValue]['class']; |
| 338 | 338 | $field = Parser::$keywordParsers[$tokenValue]['field']; |
| 339 | - if (! empty(Parser::$keywordParsers[$tokenValue]['options'])) { |
|
| 339 | + if (!empty(Parser::$keywordParsers[$tokenValue]['options'])) { |
|
| 340 | 340 | $options = Parser::$keywordParsers[$tokenValue]['options']; |
| 341 | 341 | } |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | 344 | // Checking if this is the beginning of the statement. |
| 345 | - if (! empty(Parser::$statementParsers[$token->keyword])) { |
|
| 345 | + if (!empty(Parser::$statementParsers[$token->keyword])) { |
|
| 346 | 346 | if ( |
| 347 | - ! empty(static::$clauses) // Undefined for some statements. |
|
| 347 | + !empty(static::$clauses) // Undefined for some statements. |
|
| 348 | 348 | && empty(static::$clauses[$token->value]) |
| 349 | 349 | ) { |
| 350 | 350 | // Some keywords (e.g. `SET`) may be the beginning of a |
@@ -359,7 +359,7 @@ discard block |
||
| 359 | 359 | break; |
| 360 | 360 | } |
| 361 | 361 | |
| 362 | - if (! $parsedOptions) { |
|
| 362 | + if (!$parsedOptions) { |
|
| 363 | 363 | if (empty(static::$statementOptions[$token->value])) { |
| 364 | 364 | // Skipping keyword because if it is not a option. |
| 365 | 365 | ++$list->idx; |
@@ -538,7 +538,7 @@ discard block |
||
| 538 | 538 | if ($minJoin === 0 && stripos($clauseType, 'JOIN')) { |
| 539 | 539 | // First JOIN clause is detected |
| 540 | 540 | $minJoin = $maxJoin = $clauseStartIdx; |
| 541 | - } elseif ($minJoin !== 0 && ! stripos($clauseType, 'JOIN')) { |
|
| 541 | + } elseif ($minJoin !== 0 && !stripos($clauseType, 'JOIN')) { |
|
| 542 | 542 | // After a previous JOIN clause, a non-JOIN clause has been detected |
| 543 | 543 | $maxJoin = $lastIdx; |
| 544 | 544 | } elseif ($maxJoin < $clauseStartIdx && stripos($clauseType, 'JOIN')) { |
@@ -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; |
@@ -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 | } |
@@ -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 | } |
@@ -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) { |
@@ -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) { |
@@ -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 = []; |
@@ -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 | |