@@ -21,8 +21,8 @@ |
||
21 | 21 | 'statementEndOptions', |
22 | 22 | 'keywordParsers', |
23 | 23 | 'statementParsers', |
24 | - 'keywordNameIndicators',// Not static |
|
25 | - 'operatorNameIndicators',// Not static |
|
24 | + 'keywordNameIndicators', // Not static |
|
25 | + 'operatorNameIndicators', // Not static |
|
26 | 26 | 'defaultDelimiter', |
27 | 27 | 'parserMethods', |
28 | 28 | 'OPTIONS', |
@@ -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 | } |
@@ -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')) { |
@@ -24,7 +24,7 @@ |
||
24 | 24 | * @param Token $token the token that produced this exception |
25 | 25 | * @param int $code the code of this error |
26 | 26 | */ |
27 | - public function __construct($msg = '', Token|null $token = null, $code = 0) |
|
27 | + public function __construct($msg = '', Token | null $token = null, $code = 0) |
|
28 | 28 | { |
29 | 29 | parent::__construct($msg, $code); |
30 | 30 | $this->token = $token; |
@@ -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; |