@@ -119,7 +119,7 @@ discard block |
||
119 | 119 | } |
120 | 120 | |
121 | 121 | if ( |
122 | - ! $hasSubQuery |
|
122 | + !$hasSubQuery |
|
123 | 123 | && $token->keyword !== null && $token->type === TokenType::Keyword |
124 | 124 | && $brackets > 0 |
125 | 125 | && (Parser::STATEMENT_PARSERS[$token->keyword] ?? '') !== '' |
@@ -156,13 +156,13 @@ discard block |
||
156 | 156 | if ( |
157 | 157 | ($token->type === TokenType::Keyword) |
158 | 158 | && ($token->flags & Token::FLAG_KEYWORD_RESERVED) |
159 | - && ! ($token->flags & Token::FLAG_KEYWORD_FUNCTION) |
|
159 | + && !($token->flags & Token::FLAG_KEYWORD_FUNCTION) |
|
160 | 160 | ) { |
161 | 161 | if ($token->value === 'BETWEEN') { |
162 | 162 | $betweenBefore = true; |
163 | 163 | } |
164 | 164 | |
165 | - if ($brackets === 0 && ! in_array($token->value, self::ALLOWED_KEYWORDS, true)) { |
|
165 | + if ($brackets === 0 && !in_array($token->value, self::ALLOWED_KEYWORDS, true)) { |
|
166 | 166 | break; |
167 | 167 | } |
168 | 168 | } |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | } |
181 | 181 | |
182 | 182 | --$brackets; |
183 | - } elseif (! $hasSubQuery && in_array($token->value, self::COMPARISON_OPERATORS, true)) { |
|
183 | + } elseif (!$hasSubQuery && in_array($token->value, self::COMPARISON_OPERATORS, true)) { |
|
184 | 184 | $expr->operator = $token->value; |
185 | 185 | } |
186 | 186 | } |
@@ -32,7 +32,7 @@ |
||
32 | 32 | public string $rightOperand = ''; |
33 | 33 | |
34 | 34 | /** @param string $expr the condition or the operator */ |
35 | - public function __construct(string|null $expr = null) |
|
35 | + public function __construct(string | null $expr = null) |
|
36 | 36 | { |
37 | 37 | $this->expr = trim((string) $expr); |
38 | 38 | } |
@@ -134,7 +134,7 @@ |
||
134 | 134 | /** |
135 | 135 | * The type of the statement (which is usually the first keyword). |
136 | 136 | */ |
137 | - public StatementType|null $queryType = null; |
|
137 | + public StatementType | null $queryType = null; |
|
138 | 138 | |
139 | 139 | /** |
140 | 140 | * Whether a page reload is required. |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public function __construct( |
21 | 21 | public readonly Parser $parser, |
22 | - public readonly Statement|null $statement, |
|
22 | + public readonly Statement | null $statement, |
|
23 | 23 | public readonly StatementFlags $flags, |
24 | 24 | public readonly array $selectTables, |
25 | 25 | public readonly array $selectExpressions, |
@@ -78,23 +78,23 @@ discard block |
||
78 | 78 | $flags->distinct = true; |
79 | 79 | } |
80 | 80 | |
81 | - if (! empty($statement->group) || ! empty($statement->having)) { |
|
81 | + if (!empty($statement->group) || !empty($statement->having)) { |
|
82 | 82 | $flags->isGroup = true; |
83 | 83 | } |
84 | 84 | |
85 | - if (! empty($statement->into) && ($statement->into->type === 'OUTFILE')) { |
|
85 | + if (!empty($statement->into) && ($statement->into->type === 'OUTFILE')) { |
|
86 | 86 | $flags->isExport = true; |
87 | 87 | } |
88 | 88 | |
89 | 89 | $expressions = $statement->expr; |
90 | - if (! empty($statement->join)) { |
|
90 | + if (!empty($statement->join)) { |
|
91 | 91 | foreach ($statement->join as $join) { |
92 | 92 | $expressions[] = $join->expr; |
93 | 93 | } |
94 | 94 | } |
95 | 95 | |
96 | 96 | foreach ($expressions as $expr) { |
97 | - if (! empty($expr->function)) { |
|
97 | + if (!empty($expr->function)) { |
|
98 | 98 | if ($expr->function === 'COUNT') { |
99 | 99 | $flags->isCount = true; |
100 | 100 | } elseif (in_array($expr->function, static::$functions)) { |
@@ -109,15 +109,15 @@ discard block |
||
109 | 109 | $flags->isSubQuery = true; |
110 | 110 | } |
111 | 111 | |
112 | - if (! empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) { |
|
112 | + if (!empty($statement->procedure) && ($statement->procedure->name === 'ANALYSE')) { |
|
113 | 113 | $flags->isAnalyse = true; |
114 | 114 | } |
115 | 115 | |
116 | - if (! empty($statement->group)) { |
|
116 | + if (!empty($statement->group)) { |
|
117 | 117 | $flags->group = true; |
118 | 118 | } |
119 | 119 | |
120 | - if (! empty($statement->having)) { |
|
120 | + if (!empty($statement->having)) { |
|
121 | 121 | $flags->having = true; |
122 | 122 | } |
123 | 123 | |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | * |
138 | 138 | * @param Statement|null $statement the statement to be processed |
139 | 139 | */ |
140 | - public static function getFlags(Statement|null $statement): StatementFlags |
|
140 | + public static function getFlags(Statement | null $statement): StatementFlags |
|
141 | 141 | { |
142 | 142 | $flags = new StatementFlags(); |
143 | 143 | |
@@ -213,11 +213,11 @@ discard block |
||
213 | 213 | || ($statement instanceof UpdateStatement) |
214 | 214 | || ($statement instanceof DeleteStatement) |
215 | 215 | ) { |
216 | - if (! empty($statement->limit)) { |
|
216 | + if (!empty($statement->limit)) { |
|
217 | 217 | $flags->limit = true; |
218 | 218 | } |
219 | 219 | |
220 | - if (! empty($statement->order)) { |
|
220 | + if (!empty($statement->order)) { |
|
221 | 221 | $flags->order = true; |
222 | 222 | } |
223 | 223 | } |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | // Finding tables' aliases and their associated real names. |
248 | 248 | $tableAliases = []; |
249 | 249 | foreach ($statement->from as $expr) { |
250 | - if (! isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) { |
|
250 | + if (!isset($expr->table, $expr->alias) || ($expr->table === '') || ($expr->alias === '')) { |
|
251 | 251 | continue; |
252 | 252 | } |
253 | 253 | |
@@ -272,7 +272,7 @@ discard block |
||
272 | 272 | ]; |
273 | 273 | } |
274 | 274 | |
275 | - if (! in_array($arr, $selectTables)) { |
|
275 | + if (!in_array($arr, $selectTables)) { |
|
276 | 276 | $selectTables[] = $arr; |
277 | 277 | } |
278 | 278 | } else { |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | // extracted from the FROM clause. |
286 | 286 | if ($selectTables === []) { |
287 | 287 | foreach ($statement->from as $expr) { |
288 | - if (! isset($expr->table) || ($expr->table === '')) { |
|
288 | + if (!isset($expr->table) || ($expr->table === '')) { |
|
289 | 289 | continue; |
290 | 290 | } |
291 | 291 | |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | } elseif (($statement instanceof AlterStatement) || ($statement instanceof TruncateStatement)) { |
327 | 327 | $expressions = [$statement->table]; |
328 | 328 | } elseif ($statement instanceof DropStatement) { |
329 | - if (! $statement->options->has('TABLE')) { |
|
329 | + if (!$statement->options->has('TABLE')) { |
|
330 | 330 | // No tables are dropped. |
331 | 331 | return []; |
332 | 332 | } |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | Statement $statement, |
372 | 372 | TokensList $list, |
373 | 373 | string $clause, |
374 | - int|string $type = 0, |
|
374 | + int | string $type = 0, |
|
375 | 375 | bool $skipFirst = true, |
376 | 376 | ): string { |
377 | 377 | /** |
@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | Statement $statement, |
496 | 496 | TokensList $list, |
497 | 497 | string $old, |
498 | - string|null $new = null, |
|
498 | + string | null $new = null, |
|
499 | 499 | bool $onlyType = false, |
500 | 500 | ): string { |
501 | 501 | // TODO: Update the tokens list and the statement. |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | * the remaining part of the query and the last delimiter |
573 | 573 | * @psalm-return array{string|null, string, string|null} |
574 | 574 | */ |
575 | - public static function getFirstStatement(string $query, string|null $delimiter = null): array |
|
575 | + public static function getFirstStatement(string $query, string | null $delimiter = null): array |
|
576 | 576 | { |
577 | 577 | $lexer = new Lexer($query, false, $delimiter); |
578 | 578 | $list = $lexer->list; |
@@ -596,7 +596,7 @@ discard block |
||
596 | 596 | |
597 | 597 | $statement .= $token->token; |
598 | 598 | |
599 | - if (($token->type === TokenType::Delimiter) && ! empty($token->token)) { |
|
599 | + if (($token->type === TokenType::Delimiter) && !empty($token->token)) { |
|
600 | 600 | $delimiter = $token->token; |
601 | 601 | $fullStatement = true; |
602 | 602 | break; |
@@ -605,7 +605,7 @@ discard block |
||
605 | 605 | |
606 | 606 | // No statement was found so we return the entire query as being the |
607 | 607 | // remaining part. |
608 | - if (! $fullStatement) { |
|
608 | + if (!$fullStatement) { |
|
609 | 609 | return [ |
610 | 610 | null, |
611 | 611 | $query, |
@@ -69,17 +69,17 @@ discard block |
||
69 | 69 | * |
70 | 70 | * @see Statement::$statementOptions |
71 | 71 | */ |
72 | - public OptionsArray|null $options = null; |
|
72 | + public OptionsArray | null $options = null; |
|
73 | 73 | |
74 | 74 | /** |
75 | 75 | * The index of the first token used in this statement. |
76 | 76 | */ |
77 | - public int|null $first = null; |
|
77 | + public int | null $first = null; |
|
78 | 78 | |
79 | 79 | /** |
80 | 80 | * The index of the last token used in this statement. |
81 | 81 | */ |
82 | - public int|null $last = null; |
|
82 | + public int | null $last = null; |
|
83 | 83 | |
84 | 84 | /** |
85 | 85 | * @param Parser|null $parser the instance that requests parsing |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @throws ParserException |
89 | 89 | */ |
90 | - public function __construct(Parser|null $parser = null, TokensList|null $list = null) |
|
90 | + public function __construct(Parser | null $parser = null, TokensList | null $list = null) |
|
91 | 91 | { |
92 | 92 | if (($parser === null) || ($list === null)) { |
93 | 93 | return; |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | // Checking if this field was already built. |
134 | 134 | if ($type & self::ADD_CLAUSE) { |
135 | - if (! empty($built[$field])) { |
|
135 | + if (!empty($built[$field])) { |
|
136 | 136 | continue; |
137 | 137 | } |
138 | 138 | |
@@ -145,7 +145,7 @@ discard block |
||
145 | 145 | } |
146 | 146 | |
147 | 147 | // Checking if the result of the builder should be added. |
148 | - if (! ($type & self::ADD_CLAUSE)) { |
|
148 | + if (!($type & self::ADD_CLAUSE)) { |
|
149 | 149 | continue; |
150 | 150 | } |
151 | 151 | |
@@ -304,7 +304,7 @@ discard block |
||
304 | 304 | isset(Parser::STATEMENT_PARSERS[$token->keyword]) |
305 | 305 | && Parser::STATEMENT_PARSERS[$token->keyword] !== '' |
306 | 306 | ) { |
307 | - if (static::$clauses !== [] && is_string($token->value) && ! isset(static::$clauses[$token->value])) { |
|
307 | + if (static::$clauses !== [] && is_string($token->value) && !isset(static::$clauses[$token->value])) { |
|
308 | 308 | // Some keywords (e.g. `SET`) may be the beginning of a |
309 | 309 | // statement and a clause. |
310 | 310 | // If such keyword was found, and it cannot be a clause of |
@@ -317,8 +317,8 @@ discard block |
||
317 | 317 | break; |
318 | 318 | } |
319 | 319 | |
320 | - if (! $parsedOptions) { |
|
321 | - if (! array_key_exists((string) $token->value, static::$statementOptions)) { |
|
320 | + if (!$parsedOptions) { |
|
321 | + if (!array_key_exists((string) $token->value, static::$statementOptions)) { |
|
322 | 322 | // Skipping keyword because if it is not a option. |
323 | 323 | ++$list->idx; |
324 | 324 | } |
@@ -478,7 +478,7 @@ discard block |
||
478 | 478 | if ($minJoin === 0 && $containsJoinClause) { |
479 | 479 | // First JOIN clause is detected |
480 | 480 | $minJoin = $maxJoin = $clauseStartIdx; |
481 | - } elseif ($minJoin !== 0 && ! $containsJoinClause) { |
|
481 | + } elseif ($minJoin !== 0 && !$containsJoinClause) { |
|
482 | 482 | // After a previous JOIN clause, a non-JOIN clause has been detected |
483 | 483 | $maxJoin = $lastIdx; |
484 | 484 | } elseif ($maxJoin < $clauseStartIdx && $containsJoinClause) { |