@@ -179,9 +179,9 @@ discard block |
||
| 179 | 179 | } elseif ($state === 1) { |
| 180 | 180 | if (($token->type === Token::TYPE_OPERATOR) && ($token->value === '(')) { |
| 181 | 181 | $positionBeforeSearch = $list->idx; |
| 182 | - $list->idx++;// Ignore the current token "(" or the search condition will always be true |
|
| 182 | + $list->idx++; // Ignore the current token "(" or the search condition will always be true |
|
| 183 | 183 | $nextToken = $list->getNext(); |
| 184 | - $list->idx = $positionBeforeSearch;// Restore the position |
|
| 184 | + $list->idx = $positionBeforeSearch; // Restore the position |
|
| 185 | 185 | |
| 186 | 186 | if ($nextToken !== null && $nextToken->value === '(') { |
| 187 | 187 | // Switch to expression mode |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | $state = 3; |
| 199 | 199 | } elseif (($token->value === ',') || ($token->value === ')')) { |
| 200 | 200 | $state = $token->value === ',' ? 2 : 4; |
| 201 | - if (! empty($lastColumn)) { |
|
| 201 | + if (!empty($lastColumn)) { |
|
| 202 | 202 | $ret->columns[] = $lastColumn; |
| 203 | 203 | $lastColumn = []; |
| 204 | 204 | } |
@@ -230,7 +230,7 @@ discard block |
||
| 230 | 230 | if ($token->type === Token::TYPE_OPERATOR) { |
| 231 | 231 | // This got back to here and we reached the end of the expression |
| 232 | 232 | if ($token->value === ')') { |
| 233 | - $state = 4;// go back to state 4 to fetch options |
|
| 233 | + $state = 4; // go back to state 4 to fetch options |
|
| 234 | 234 | continue; |
| 235 | 235 | } |
| 236 | 236 | |
@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | public static function build($component, array $options = []): string |
| 271 | 271 | { |
| 272 | 272 | $ret = $component->type . ' '; |
| 273 | - if (! empty($component->name)) { |
|
| 273 | + if (!empty($component->name)) { |
|
| 274 | 274 | $ret .= Context::escape($component->name) . ' '; |
| 275 | 275 | } |
| 276 | 276 | |
@@ -51,11 +51,11 @@ |
||
| 51 | 51 | */ |
| 52 | 52 | public static function build($component, array $options = []): string |
| 53 | 53 | { |
| 54 | - if (! $component instanceof WithKeyword) { |
|
| 54 | + if (!$component instanceof WithKeyword) { |
|
| 55 | 55 | throw new RuntimeException('Can not build a component that is not a WithKeyword'); |
| 56 | 56 | } |
| 57 | 57 | |
| 58 | - if (! isset($component->statement)) { |
|
| 58 | + if (!isset($component->statement)) { |
|
| 59 | 59 | throw new RuntimeException('No statement inside WITH'); |
| 60 | 60 | } |
| 61 | 61 | |
@@ -267,7 +267,7 @@ |
||
| 267 | 267 | public static function build($component, array $options = []): string |
| 268 | 268 | { |
| 269 | 269 | if ($component->dest instanceof Expression) { |
| 270 | - $columns = ! empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
| 270 | + $columns = !empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
| 271 | 271 | |
| 272 | 272 | return $component->dest . $columns; |
| 273 | 273 | } |
@@ -188,7 +188,7 @@ discard block |
||
| 188 | 188 | } |
| 189 | 189 | } |
| 190 | 190 | |
| 191 | - if (! empty($expr->type)) { |
|
| 191 | + if (!empty($expr->type)) { |
|
| 192 | 192 | $ret[] = $expr; |
| 193 | 193 | } |
| 194 | 194 | |
@@ -206,9 +206,9 @@ discard block |
||
| 206 | 206 | $ret = []; |
| 207 | 207 | foreach ($component as $c) { |
| 208 | 208 | $ret[] = array_search($c->type, static::$joins) . ' ' . $c->expr |
| 209 | - . (! empty($c->on) |
|
| 209 | + . (!empty($c->on) |
|
| 210 | 210 | ? ' ON ' . Condition::build($c->on) : '') |
| 211 | - . (! empty($c->using) |
|
| 211 | + . (!empty($c->using) |
|
| 212 | 212 | ? ' USING ' . ArrayObj::build($c->using) : ''); |
| 213 | 213 | } |
| 214 | 214 | |
@@ -413,8 +413,8 @@ discard block |
||
| 413 | 413 | } elseif (($token->value === ',') && ($brackets === 0)) { |
| 414 | 414 | break; |
| 415 | 415 | } |
| 416 | - } elseif (! self::checkIfTokenQuotedSymbol($token)) { |
|
| 417 | - if (! empty(Parser::$statementParsers[$token->value])) { |
|
| 416 | + } elseif (!self::checkIfTokenQuotedSymbol($token)) { |
|
| 417 | + if (!empty(Parser::$statementParsers[$token->value])) { |
|
| 418 | 418 | $list->idx++; // Ignore the current token |
| 419 | 419 | $nextToken = $list->getNext(); |
| 420 | 420 | |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | } elseif ( |
| 437 | 437 | (array_key_exists($arrayKey, self::$databaseOptions) |
| 438 | 438 | || array_key_exists($arrayKey, self::$tableOptions)) |
| 439 | - && ! self::checkIfColumnDefinitionKeyword($arrayKey) |
|
| 439 | + && !self::checkIfColumnDefinitionKeyword($arrayKey) |
|
| 440 | 440 | ) { |
| 441 | 441 | // This alter operation has finished, which means a comma |
| 442 | 442 | // was missing before start of new alter operation |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | ]; |
| 203 | 203 | |
| 204 | 204 | // When a field is parsed, no parentheses are expected. |
| 205 | - if (! empty($options['parseField'])) { |
|
| 205 | + if (!empty($options['parseField'])) { |
|
| 206 | 206 | $options['breakOnParentheses'] = true; |
| 207 | 207 | $options['field'] = $options['parseField']; |
| 208 | 208 | } |
@@ -229,14 +229,14 @@ discard block |
||
| 229 | 229 | } |
| 230 | 230 | |
| 231 | 231 | if ($token->type === Token::TYPE_KEYWORD) { |
| 232 | - if (($brackets > 0) && empty($ret->subquery) && ! empty(Parser::$statementParsers[$token->keyword])) { |
|
| 232 | + if (($brackets > 0) && empty($ret->subquery) && !empty(Parser::$statementParsers[$token->keyword])) { |
|
| 233 | 233 | // A `(` was previously found and this keyword is the |
| 234 | 234 | // beginning of a statement, so this is a subquery. |
| 235 | 235 | $ret->subquery = $token->keyword; |
| 236 | 236 | } elseif ( |
| 237 | 237 | ($token->flags & Token::FLAG_KEYWORD_FUNCTION) |
| 238 | 238 | && (empty($options['parseField']) |
| 239 | - && ! $alias) |
|
| 239 | + && !$alias) |
|
| 240 | 240 | ) { |
| 241 | 241 | $isExpr = true; |
| 242 | 242 | } elseif (($token->flags & Token::FLAG_KEYWORD_RESERVED) && ($brackets === 0)) { |
@@ -248,7 +248,7 @@ discard block |
||
| 248 | 248 | } |
| 249 | 249 | |
| 250 | 250 | if ($token->keyword === 'AS') { |
| 251 | - if (! empty($options['breakOnAlias'])) { |
|
| 251 | + if (!empty($options['breakOnAlias'])) { |
|
| 252 | 252 | break; |
| 253 | 253 | } |
| 254 | 254 | |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | $isExpr = true; |
| 274 | - } elseif ($brackets === 0 && strlen((string) $ret->expr) > 0 && ! $alias) { |
|
| 274 | + } elseif ($brackets === 0 && strlen((string) $ret->expr) > 0 && !$alias) { |
|
| 275 | 275 | /* End of expression */ |
| 276 | 276 | break; |
| 277 | 277 | } |
@@ -287,7 +287,7 @@ discard block |
||
| 287 | 287 | || (($token->type === Token::TYPE_OPERATOR) |
| 288 | 288 | && ($token->value !== '.')) |
| 289 | 289 | ) { |
| 290 | - if (! empty($options['parseField'])) { |
|
| 290 | + if (!empty($options['parseField'])) { |
|
| 291 | 291 | break; |
| 292 | 292 | } |
| 293 | 293 | |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | } |
| 298 | 298 | |
| 299 | 299 | if ($token->type === Token::TYPE_OPERATOR) { |
| 300 | - if (! empty($options['breakOnParentheses']) && (($token->value === '(') || ($token->value === ')'))) { |
|
| 300 | + if (!empty($options['breakOnParentheses']) && (($token->value === '(') || ($token->value === ')'))) { |
|
| 301 | 301 | // No brackets were expected. |
| 302 | 302 | break; |
| 303 | 303 | } |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | |
| 322 | 322 | --$brackets; |
| 323 | 323 | if ($brackets === 0) { |
| 324 | - if (! empty($options['parenthesesDelimited'])) { |
|
| 324 | + if (!empty($options['parenthesesDelimited'])) { |
|
| 325 | 325 | // The current token is the last bracket, the next |
| 326 | 326 | // one will be outside the expression. |
| 327 | 327 | $ret->expr .= $token->token; |
@@ -347,7 +347,7 @@ discard block |
||
| 347 | 347 | |
| 348 | 348 | if ($alias) { |
| 349 | 349 | // An alias is expected (the keyword `AS` was previously found). |
| 350 | - if (! empty($ret->alias)) { |
|
| 350 | + if (!empty($ret->alias)) { |
|
| 351 | 351 | $parser->error('An alias was previously found.', $token); |
| 352 | 352 | break; |
| 353 | 353 | } |
@@ -361,13 +361,13 @@ discard block |
||
| 361 | 361 | && ($prev[0] === null |
| 362 | 362 | || (($prev[0]->type !== Token::TYPE_OPERATOR || $prev[0]->token === ')') |
| 363 | 363 | && ($prev[0]->type !== Token::TYPE_KEYWORD |
| 364 | - || ! ($prev[0]->flags & Token::FLAG_KEYWORD_RESERVED)))) |
|
| 364 | + || !($prev[0]->flags & Token::FLAG_KEYWORD_RESERVED)))) |
|
| 365 | 365 | && (($prev[1]->type === Token::TYPE_STRING) |
| 366 | 366 | || ($prev[1]->type === Token::TYPE_SYMBOL |
| 367 | - && ! ($prev[1]->flags & Token::FLAG_SYMBOL_VARIABLE)) |
|
| 367 | + && !($prev[1]->flags & Token::FLAG_SYMBOL_VARIABLE)) |
|
| 368 | 368 | || ($prev[1]->type === Token::TYPE_NONE)) |
| 369 | 369 | ) { |
| 370 | - if (! empty($ret->alias)) { |
|
| 370 | + if (!empty($ret->alias)) { |
|
| 371 | 371 | $parser->error('An alias was previously found.', $token); |
| 372 | 372 | break; |
| 373 | 373 | } |
@@ -393,12 +393,12 @@ discard block |
||
| 393 | 393 | |
| 394 | 394 | $ret->expr .= $token->token; |
| 395 | 395 | } |
| 396 | - } elseif (! $isExpr) { |
|
| 396 | + } elseif (!$isExpr) { |
|
| 397 | 397 | if (($token->type === Token::TYPE_OPERATOR) && ($token->value === '.')) { |
| 398 | 398 | // Found a `.` which means we expect a column name and |
| 399 | 399 | // the column name we parsed is actually the table name |
| 400 | 400 | // and the table name is actually a database name. |
| 401 | - if (! empty($ret->database) || $dot) { |
|
| 401 | + if (!empty($ret->database) || $dot) { |
|
| 402 | 402 | $parser->error('Unexpected dot.', $token); |
| 403 | 403 | } |
| 404 | 404 | |
@@ -415,11 +415,11 @@ discard block |
||
| 415 | 415 | $dot = false; |
| 416 | 416 | } else { |
| 417 | 417 | // No alias is expected. |
| 418 | - if (! empty($options['breakOnAlias'])) { |
|
| 418 | + if (!empty($options['breakOnAlias'])) { |
|
| 419 | 419 | break; |
| 420 | 420 | } |
| 421 | 421 | |
| 422 | - if (! empty($ret->alias)) { |
|
| 422 | + if (!empty($ret->alias)) { |
|
| 423 | 423 | $parser->error('An alias was previously found.', $token); |
| 424 | 424 | break; |
| 425 | 425 | } |
@@ -475,7 +475,7 @@ discard block |
||
| 475 | 475 | $ret = implode('.', Context::escape($fields)); |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | - if (! empty($component->alias)) { |
|
| 478 | + if (!empty($component->alias)) { |
|
| 479 | 479 | $ret .= ' AS ' . Context::escape($component->alias); |
| 480 | 480 | } |
| 481 | 481 | |
@@ -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; |
@@ -63,7 +63,7 @@ |
||
| 63 | 63 | * |
| 64 | 64 | * @var Array2d[]|null |
| 65 | 65 | */ |
| 66 | - public array|null $values = null; |
|
| 66 | + public array | null $values = null; |
|
| 67 | 67 | |
| 68 | 68 | /** |
| 69 | 69 | * If SET clause is present |
@@ -349,7 +349,7 @@ discard block |
||
| 349 | 349 | // This is a cheap fix for `SELECT` statements that contain `UNION`. |
| 350 | 350 | // The `ORDER BY` and `LIMIT` clauses should be at the end of the |
| 351 | 351 | // statement. |
| 352 | - if (! empty($this->union)) { |
|
| 352 | + if (!empty($this->union)) { |
|
| 353 | 353 | $clauses = static::$clauses; |
| 354 | 354 | unset($clauses['ORDER BY'], $clauses['LIMIT']); |
| 355 | 355 | $clauses['ORDER BY'] = [ |
@@ -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 | |