@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | |
212 | 212 | // Handle optional AS keyword before alias |
213 | 213 | if ($token->type === Token::TYPE_KEYWORD && $token->keyword === 'AS') { |
214 | - if ($asFound || ! empty($ret->alias)) { |
|
214 | + if ($asFound || !empty($ret->alias)) { |
|
215 | 215 | $parser->error('Potential duplicate alias of CASE expression.', $token); |
216 | 216 | break; |
217 | 217 | } |
@@ -233,11 +233,11 @@ discard block |
||
233 | 233 | if ( |
234 | 234 | $asFound |
235 | 235 | || $token->type === Token::TYPE_STRING |
236 | - || ($token->type === Token::TYPE_SYMBOL && ! $token->flags & Token::FLAG_SYMBOL_VARIABLE) |
|
236 | + || ($token->type === Token::TYPE_SYMBOL && !$token->flags & Token::FLAG_SYMBOL_VARIABLE) |
|
237 | 237 | || $token->type === Token::TYPE_NONE |
238 | 238 | ) { |
239 | 239 | // An alias is expected (the keyword `AS` was previously found). |
240 | - if (! empty($ret->alias)) { |
|
240 | + if (!empty($ret->alias)) { |
|
241 | 241 | $parser->error('An alias was previously found.', $token); |
242 | 242 | break; |
243 | 243 | } |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | } else { |
155 | 155 | // The expression ended. |
156 | 156 | $expr->expr = trim($expr->expr); |
157 | - if (! empty($expr->expr)) { |
|
157 | + if (!empty($expr->expr)) { |
|
158 | 158 | $ret[] = $expr; |
159 | 159 | } |
160 | 160 | |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | if ( |
173 | 173 | ($token->type === Token::TYPE_KEYWORD) |
174 | 174 | && ($token->flags & Token::FLAG_KEYWORD_RESERVED) |
175 | - && ! ($token->flags & Token::FLAG_KEYWORD_FUNCTION) |
|
175 | + && !($token->flags & Token::FLAG_KEYWORD_FUNCTION) |
|
176 | 176 | ) { |
177 | 177 | if ($token->value === 'BETWEEN') { |
178 | 178 | $betweenBefore = true; |
@@ -215,7 +215,7 @@ discard block |
||
215 | 215 | |
216 | 216 | // Last iteration was not processed. |
217 | 217 | $expr->expr = trim($expr->expr); |
218 | - if (! empty($expr->expr)) { |
|
218 | + if (!empty($expr->expr)) { |
|
219 | 219 | $ret[] = $expr; |
220 | 220 | } |
221 | 221 |
@@ -222,7 +222,7 @@ discard block |
||
222 | 222 | switch ($this->type) { |
223 | 223 | case self::TYPE_KEYWORD: |
224 | 224 | $this->keyword = strtoupper($this->token); |
225 | - if (! ($this->flags & self::FLAG_KEYWORD_RESERVED)) { |
|
225 | + if (!($this->flags & self::FLAG_KEYWORD_RESERVED)) { |
|
226 | 226 | // Unreserved keywords should stay the way they are because they |
227 | 227 | // might represent field names. |
228 | 228 | return $this->token; |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | } |
248 | 248 | } elseif (($this->flags & self::FLAG_NUMBER_APPROXIMATE) || ($this->flags & self::FLAG_NUMBER_FLOAT)) { |
249 | 249 | $ret = (float) $ret; |
250 | - } elseif (! ($this->flags & self::FLAG_NUMBER_BINARY)) { |
|
250 | + } elseif (!($this->flags & self::FLAG_NUMBER_BINARY)) { |
|
251 | 251 | $ret = (int) $ret; |
252 | 252 | } |
253 | 253 | |
@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | // in PHP 5.3- the `null` parameter isn't handled correctly. |
283 | 283 | $str = mb_substr( |
284 | 284 | $str, |
285 | - ! empty($str[1]) && ($str[1] === '@') ? 2 : 1, |
|
285 | + !empty($str[1]) && ($str[1] === '@') ? 2 : 1, |
|
286 | 286 | mb_strlen($str), |
287 | 287 | 'UTF-8' |
288 | 288 | ); |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | ) { |
95 | 95 | $expr->type = $token->keyword; |
96 | 96 | } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === ',')) { |
97 | - if (! empty($expr->expr)) { |
|
97 | + if (!empty($expr->expr)) { |
|
98 | 98 | $ret[] = $expr; |
99 | 99 | } |
100 | 100 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | } |
108 | 108 | |
109 | 109 | // Last iteration was not processed. |
110 | - if (! empty($expr->expr)) { |
|
110 | + if (!empty($expr->expr)) { |
|
111 | 111 | $ret[] = $expr; |
112 | 112 | } |
113 | 113 |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | */ |
27 | 27 | public static function getForeignKeys($statement) |
28 | 28 | { |
29 | - if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) { |
|
29 | + if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) { |
|
30 | 30 | return []; |
31 | 31 | } |
32 | 32 | |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | |
40 | 40 | $columns = []; |
41 | 41 | foreach ($field->key->columns as $column) { |
42 | - if (! isset($column['name'])) { |
|
42 | + if (!isset($column['name'])) { |
|
43 | 43 | continue; |
44 | 44 | } |
45 | 45 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | 'index_list' => $columns, |
52 | 52 | ]; |
53 | 53 | |
54 | - if (! empty($field->references)) { |
|
54 | + if (!empty($field->references)) { |
|
55 | 55 | $tmp['ref_db_name'] = $field->references->table->database; |
56 | 56 | $tmp['ref_table_name'] = $field->references->table->table; |
57 | 57 | $tmp['ref_index_list'] = $field->references->columns; |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | */ |
85 | 85 | public static function getFields($statement) |
86 | 86 | { |
87 | - if (empty($statement->fields) || (! is_array($statement->fields)) || (! $statement->options->has('TABLE'))) { |
|
87 | + if (empty($statement->fields) || (!is_array($statement->fields)) || (!$statement->options->has('TABLE'))) { |
|
88 | 88 | return []; |
89 | 89 | } |
90 | 90 | |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | 'timestamp_not_null' => false, |
102 | 102 | ]; |
103 | 103 | |
104 | - if (! $field->options) { |
|
104 | + if (!$field->options) { |
|
105 | 105 | continue; |
106 | 106 | } |
107 | 107 | |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | |
129 | 129 | $option = $field->options->has('AS'); |
130 | 130 | |
131 | - if (! $option) { |
|
131 | + if (!$option) { |
|
132 | 132 | continue; |
133 | 133 | } |
134 | 134 |
@@ -22,7 +22,6 @@ discard block |
||
22 | 22 | |
23 | 23 | /** |
24 | 24 | * `WITH` statement. |
25 | - |
|
26 | 25 | * WITH [RECURSIVE] query_name [ (column_name [,...]) ] AS (SELECT ...) [, ...] |
27 | 26 | */ |
28 | 27 | final class WithStatement extends Statement |
@@ -263,9 +262,9 @@ discard block |
||
263 | 262 | |
264 | 263 | // 5 is the only valid end state |
265 | 264 | if ($state !== 5) { |
266 | - /** |
|
267 | - * Token parsed at this moment. |
|
268 | - */ |
|
265 | + /** |
|
266 | + * Token parsed at this moment. |
|
267 | + */ |
|
269 | 268 | $token = $list->tokens[$list->idx]; |
270 | 269 | |
271 | 270 | $parser->error('Unexpected end of the WITH CTE.', $token); |
@@ -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 |
@@ -42,7 +42,7 @@ |
||
42 | 42 | $this->assertEquals([ |
43 | 43 | Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_RESERVED => [ |
44 | 44 | 8 => ['RESERVED'], |
45 | - 9 => ['RESERVED2','RESERVED3','RESERVED4','RESERVED5'], |
|
45 | + 9 => ['RESERVED2', 'RESERVED3', 'RESERVED4', 'RESERVED5'], |
|
46 | 46 | ], |
47 | 47 | Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_FUNCTION => [8 => ['FUNCTION']], |
48 | 48 | Token::TYPE_KEYWORD | Token::FLAG_KEYWORD_DATA_TYPE => [8 => ['DATATYPE']], |
@@ -26,7 +26,7 @@ |
||
26 | 26 | { |
27 | 27 | $str1 = new UtfString($this->testContents); |
28 | 28 | for ($i = 0; $i < $str1->length(); $i++) { |
29 | - $str1[$i];// Make offset offsetGet work |
|
29 | + $str1[$i]; // Make offset offsetGet work |
|
30 | 30 | } |
31 | 31 | } |
32 | 32 |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | foreach ($parser->statements as $statement) { |
65 | 65 | if ($statement instanceof TransactionStatement) { |
66 | 66 | foreach ($statement->statements as $transactionStatement) { |
67 | - if (! $transactionStatement instanceof SetStatement) { |
|
67 | + if (!$transactionStatement instanceof SetStatement) { |
|
68 | 68 | continue; |
69 | 69 | } |
70 | 70 | |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | continue; |
75 | 75 | } |
76 | 76 | |
77 | - if (! $statement instanceof SetStatement) { |
|
77 | + if (!$statement instanceof SetStatement) { |
|
78 | 78 | continue; |
79 | 79 | } |
80 | 80 |