@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | * Gets the previous token. Skips any irrelevant token (whitespaces and |
119 | 119 | * comments). |
120 | 120 | */ |
121 | - public function getPrevious(): Token|null |
|
121 | + public function getPrevious(): Token | null |
|
122 | 122 | { |
123 | 123 | for (; $this->idx >= 0; --$this->idx) { |
124 | 124 | if ( |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | */ |
142 | 142 | public function getPreviousOfType($type) |
143 | 143 | { |
144 | - if (! is_array($type)) { |
|
144 | + if (!is_array($type)) { |
|
145 | 145 | $type = [$type]; |
146 | 146 | } |
147 | 147 | |
@@ -163,7 +163,7 @@ discard block |
||
163 | 163 | */ |
164 | 164 | public function getNextOfType($type) |
165 | 165 | { |
166 | - if (! is_array($type)) { |
|
166 | + if (!is_array($type)) { |
|
167 | 167 | $type = [$type]; |
168 | 168 | } |
169 | 169 | |
@@ -201,7 +201,7 @@ discard block |
||
201 | 201 | * @param int $type the type of the token |
202 | 202 | * @param int $flag the flag of the token |
203 | 203 | */ |
204 | - public function getNextOfTypeAndFlag(int $type, int $flag): Token|null |
|
204 | + public function getNextOfTypeAndFlag(int $type, int $flag): Token | null |
|
205 | 205 | { |
206 | 206 | for (; $this->idx < $this->count; ++$this->idx) { |
207 | 207 | if (($this->tokens[$this->idx]->type === $type) && ($this->tokens[$this->idx]->flags === $flag)) { |
@@ -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. |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | * |
63 | 63 | * @var Array2d[]|null |
64 | 64 | */ |
65 | - public array|null $values = null; |
|
65 | + public array | null $values = null; |
|
66 | 66 | |
67 | 67 | /** |
68 | 68 | * If SET clause is present |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | * |
71 | 71 | * @var SetOperation[]|null |
72 | 72 | */ |
73 | - public array|null $set = null; |
|
73 | + public array | null $set = null; |
|
74 | 74 | |
75 | 75 | /** |
76 | 76 | * If SELECT clause is present |
@@ -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. |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | * |
78 | 78 | * @var ArrayObj[]|null |
79 | 79 | */ |
80 | - public array|null $values = null; |
|
80 | + public array | null $values = null; |
|
81 | 81 | |
82 | 82 | /** |
83 | 83 | * If SET clause is present |
@@ -85,7 +85,7 @@ discard block |
||
85 | 85 | * |
86 | 86 | * @var SetOperation[]|null |
87 | 87 | */ |
88 | - public array|null $set = null; |
|
88 | + public array | null $set = null; |
|
89 | 89 | |
90 | 90 | /** |
91 | 91 | * If SELECT clause is present |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * |
110 | 110 | * @var SetOperation[]|null |
111 | 111 | */ |
112 | - public array|null $onDuplicateSet = null; |
|
112 | + public array | null $onDuplicateSet = null; |
|
113 | 113 | |
114 | 114 | /** |
115 | 115 | * @return string |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | { |
189 | 189 | $this->str = $str; |
190 | 190 | $this->byteLen = mb_strlen($str, '8bit'); |
191 | - if (! mb_check_encoding($str, 'UTF-8')) { |
|
191 | + if (!mb_check_encoding($str, 'UTF-8')) { |
|
192 | 192 | $this->charLen = 0; |
193 | 193 | } else { |
194 | 194 | $this->charLen = mb_strlen($str, 'UTF-8'); |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | // Use the default ASCII map as queries are mostly ASCII chars |
299 | 299 | // ord($byte) has a performance cost |
300 | 300 | |
301 | - if (! isset(static::$asciiMap[$byte])) { |
|
301 | + if (!isset(static::$asciiMap[$byte])) { |
|
302 | 302 | // Complete the cache with missing items |
303 | 303 | static::$asciiMap[$byte] = ord($byte); |
304 | 304 | } |
@@ -124,7 +124,7 @@ |
||
124 | 124 | |
125 | 125 | if ($state === 0) { |
126 | 126 | $ret->name = strtoupper((string) $token->value); |
127 | - if (($token->type !== Token::TYPE_KEYWORD) || (! ($token->flags & Token::FLAG_KEYWORD_DATA_TYPE))) { |
|
127 | + if (($token->type !== Token::TYPE_KEYWORD) || (!($token->flags & Token::FLAG_KEYWORD_DATA_TYPE))) { |
|
128 | 128 | $parser->error('Unrecognized data type.', $token); |
129 | 129 | } |
130 | 130 |
@@ -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 (empty($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 | } |
@@ -849,7 +849,7 @@ discard block |
||
849 | 849 | |
850 | 850 | $statement .= $token->token; |
851 | 851 | |
852 | - if (($token->type === Token::TYPE_DELIMITER) && ! empty($token->token)) { |
|
852 | + if (($token->type === Token::TYPE_DELIMITER) && !empty($token->token)) { |
|
853 | 853 | $delimiter = $token->token; |
854 | 854 | $fullStatement = true; |
855 | 855 | break; |
@@ -858,7 +858,7 @@ discard block |
||
858 | 858 | |
859 | 859 | // No statement was found so we return the entire query as being the |
860 | 860 | // remaining part. |
861 | - if (! $fullStatement) { |
|
861 | + if (!$fullStatement) { |
|
862 | 862 | return [ |
863 | 863 | null, |
864 | 864 | $query, |