@@ -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; |
@@ -183,7 +183,7 @@ discard block |
||
| 183 | 183 | $len = $str instanceof UtfString ? $str->length() : strlen($str); |
| 184 | 184 | |
| 185 | 185 | // For multi-byte strings, a new instance of `UtfString` is initialized. |
| 186 | - if (! $str instanceof UtfString && $len !== mb_strlen($str, 'UTF-8')) { |
|
| 186 | + if (!$str instanceof UtfString && $len !== mb_strlen($str, 'UTF-8')) { |
|
| 187 | 187 | $str = new UtfString($str); |
| 188 | 188 | } |
| 189 | 189 | |
@@ -193,7 +193,7 @@ discard block |
||
| 193 | 193 | $this->strict = $strict; |
| 194 | 194 | |
| 195 | 195 | // Setting the delimiter. |
| 196 | - $this->setDelimiter(! empty($delimiter) ? $delimiter : static::$defaultDelimiter); |
|
| 196 | + $this->setDelimiter(!empty($delimiter) ? $delimiter : static::$defaultDelimiter); |
|
| 197 | 197 | |
| 198 | 198 | $this->lex(); |
| 199 | 199 | } |
@@ -321,7 +321,7 @@ discard block |
||
| 321 | 321 | $delimiterLen = 0; |
| 322 | 322 | while ( |
| 323 | 323 | ++$this->last < $this->len |
| 324 | - && ! Context::isWhitespace($this->str[$this->last]) |
|
| 324 | + && !Context::isWhitespace($this->str[$this->last]) |
|
| 325 | 325 | && $delimiterLen < 15 |
| 326 | 326 | ) { |
| 327 | 327 | $this->delimiter .= $this->str[$this->last]; |
@@ -380,8 +380,8 @@ discard block |
||
| 380 | 380 | } |
| 381 | 381 | |
| 382 | 382 | if ( |
| 383 | - ($next->type !== Token::TYPE_KEYWORD || ! in_array($next->value, ['FROM', 'USING'], true)) |
|
| 384 | - && ($next->type !== Token::TYPE_OPERATOR || ! in_array($next->value, [',', ')'], true)) |
|
| 383 | + ($next->type !== Token::TYPE_KEYWORD || !in_array($next->value, ['FROM', 'USING'], true)) |
|
| 384 | + && ($next->type !== Token::TYPE_OPERATOR || !in_array($next->value, [',', ')'], true)) |
|
| 385 | 385 | ) { |
| 386 | 386 | continue; |
| 387 | 387 | } |
@@ -419,10 +419,10 @@ discard block |
||
| 419 | 419 | $next = $this->list->getNext(); |
| 420 | 420 | if ( |
| 421 | 421 | ($next->type !== Token::TYPE_KEYWORD |
| 422 | - || ! in_array($next->value, $this->keywordNameIndicators, true) |
|
| 422 | + || !in_array($next->value, $this->keywordNameIndicators, true) |
|
| 423 | 423 | ) |
| 424 | 424 | && ($next->type !== Token::TYPE_OPERATOR |
| 425 | - || ! in_array($next->value, $this->operatorNameIndicators, true) |
|
| 425 | + || !in_array($next->value, $this->operatorNameIndicators, true) |
|
| 426 | 426 | ) |
| 427 | 427 | && ($next->value !== null) |
| 428 | 428 | ) { |
@@ -505,7 +505,7 @@ discard block |
||
| 505 | 505 | $token .= $this->str[$this->last]; |
| 506 | 506 | $flags = Context::isKeyword($token); |
| 507 | 507 | |
| 508 | - if (($this->last + 1 !== $this->len && ! Context::isSeparator($this->str[$this->last + 1])) || ! $flags) { |
|
| 508 | + if (($this->last + 1 !== $this->len && !Context::isSeparator($this->str[$this->last + 1])) || !$flags) { |
|
| 509 | 509 | continue; |
| 510 | 510 | } |
| 511 | 511 | |
@@ -593,7 +593,7 @@ discard block |
||
| 593 | 593 | $token .= $this->str[$this->last]; |
| 594 | 594 | $flags = Context::isOperator($token); |
| 595 | 595 | |
| 596 | - if (! $flags) { |
|
| 596 | + if (!$flags) { |
|
| 597 | 597 | continue; |
| 598 | 598 | } |
| 599 | 599 | |
@@ -615,7 +615,7 @@ discard block |
||
| 615 | 615 | { |
| 616 | 616 | $token = $this->str[$this->last]; |
| 617 | 617 | |
| 618 | - if (! Context::isWhitespace($token)) { |
|
| 618 | + if (!Context::isWhitespace($token)) { |
|
| 619 | 619 | return null; |
| 620 | 620 | } |
| 621 | 621 | |
@@ -855,7 +855,7 @@ discard block |
||
| 855 | 855 | } elseif ($state === 2) { |
| 856 | 856 | $flags |= Token::FLAG_NUMBER_HEX; |
| 857 | 857 | if ( |
| 858 | - ! ( |
|
| 858 | + !( |
|
| 859 | 859 | ($this->str[$this->last] >= '0' && $this->str[$this->last] <= '9') |
| 860 | 860 | || ($this->str[$this->last] >= 'A' && $this->str[$this->last] <= 'F') |
| 861 | 861 | || ($this->str[$this->last] >= 'a' && $this->str[$this->last] <= 'f') |
@@ -958,7 +958,7 @@ discard block |
||
| 958 | 958 | $token = $this->str[$this->last]; |
| 959 | 959 | $flags = Context::isString($token); |
| 960 | 960 | |
| 961 | - if (! $flags && $token !== $quote) { |
|
| 961 | + if (!$flags && $token !== $quote) { |
|
| 962 | 962 | return null; |
| 963 | 963 | } |
| 964 | 964 | |
@@ -1010,7 +1010,7 @@ discard block |
||
| 1010 | 1010 | $token = $this->str[$this->last]; |
| 1011 | 1011 | $flags = Context::isSymbol($token); |
| 1012 | 1012 | |
| 1013 | - if (! $flags) { |
|
| 1013 | + if (!$flags) { |
|
| 1014 | 1014 | return null; |
| 1015 | 1015 | } |
| 1016 | 1016 | |
@@ -1061,7 +1061,7 @@ discard block |
||
| 1061 | 1061 | return null; |
| 1062 | 1062 | } |
| 1063 | 1063 | |
| 1064 | - while (++$this->last < $this->len && ! Context::isSeparator($this->str[$this->last])) { |
|
| 1064 | + while (++$this->last < $this->len && !Context::isSeparator($this->str[$this->last])) { |
|
| 1065 | 1065 | $token .= $this->str[$this->last]; |
| 1066 | 1066 | |
| 1067 | 1067 | // Test if end of token equals the current delimiter. If so, remove it from the token. |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | $list->idx = $lastIdx; |
| 497 | 497 | } elseif (empty(static::$statementParsers[$token->keyword])) { |
| 498 | 498 | // Checking if it is a known statement that can be parsed. |
| 499 | - if (! isset(static::$statementParsers[$token->keyword])) { |
|
| 499 | + if (!isset(static::$statementParsers[$token->keyword])) { |
|
| 500 | 500 | // A statement is considered recognized if the parser |
| 501 | 501 | // is aware that it is a statement, but it does not have |
| 502 | 502 | // a parser for it yet. |
@@ -536,7 +536,7 @@ discard block |
||
| 536 | 536 | |
| 537 | 537 | // Handles unions. |
| 538 | 538 | if ( |
| 539 | - ! empty($unionType) |
|
| 539 | + !empty($unionType) |
|
| 540 | 540 | && ($lastStatement instanceof SelectStatement) |
| 541 | 541 | && ($statement instanceof SelectStatement) |
| 542 | 542 | ) { |
@@ -623,7 +623,7 @@ discard block |
||
| 623 | 623 | * |
| 624 | 624 | * @throws ParserException throws the exception, if strict mode is enabled. |
| 625 | 625 | */ |
| 626 | - public function error($msg, Token|null $token = null, $code = 0): void |
|
| 626 | + public function error($msg, Token | null $token = null, $code = 0): void |
|
| 627 | 627 | { |
| 628 | 628 | $error = new ParserException( |
| 629 | 629 | Translator::gettext($msg), |
@@ -436,7 +436,7 @@ discard block |
||
| 436 | 436 | // The options of a clause should stay on the same line and everything that follows. |
| 437 | 437 | if ( |
| 438 | 438 | $this->options['parts_newline'] |
| 439 | - && ! $formattedOptions |
|
| 439 | + && !$formattedOptions |
|
| 440 | 440 | && empty(self::$inlineClauses[$lastClause]) |
| 441 | 441 | && ( |
| 442 | 442 | $curr->type !== Token::TYPE_KEYWORD |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | end($blocksLineEndings) === true |
| 497 | 497 | || ( |
| 498 | 498 | empty(self::$inlineClauses[$lastClause]) |
| 499 | - && ! $shortGroup |
|
| 499 | + && !$shortGroup |
|
| 500 | 500 | && $this->options['parts_newline'] |
| 501 | 501 | ) |
| 502 | 502 | ) { |
@@ -532,7 +532,7 @@ discard block |
||
| 532 | 532 | $lineEnded = false; |
| 533 | 533 | } elseif ( |
| 534 | 534 | $prev->keyword === 'DELIMITER' |
| 535 | - || ! ( |
|
| 535 | + || !( |
|
| 536 | 536 | ($prev->type === Token::TYPE_OPERATOR && ($prev->value === '.' || $prev->value === '(')) |
| 537 | 537 | // No space after . ( |
| 538 | 538 | || ($curr->type === Token::TYPE_OPERATOR |
@@ -648,12 +648,12 @@ discard block |
||
| 648 | 648 | static $prev; |
| 649 | 649 | |
| 650 | 650 | foreach ($this->options['formats'] as $format) { |
| 651 | - if ($token->type !== $format['type'] || ! (($token->flags & $format['flags']) === $format['flags'])) { |
|
| 651 | + if ($token->type !== $format['type'] || !(($token->flags & $format['flags']) === $format['flags'])) { |
|
| 652 | 652 | continue; |
| 653 | 653 | } |
| 654 | 654 | |
| 655 | 655 | // Running transformation function. |
| 656 | - if (! empty($format['function'])) { |
|
| 656 | + if (!empty($format['function'])) { |
|
| 657 | 657 | $func = $format['function']; |
| 658 | 658 | $text = $func($text); |
| 659 | 659 | } |
@@ -764,7 +764,7 @@ discard block |
||
| 764 | 764 | * |
| 765 | 765 | * @psalm-return 1|2|false |
| 766 | 766 | */ |
| 767 | - public static function isClause($token): int|false |
|
| 767 | + public static function isClause($token): int | false |
|
| 768 | 768 | { |
| 769 | 769 | if ( |
| 770 | 770 | ($token->type === Token::TYPE_KEYWORD && isset(Parser::$statementParsers[$token->keyword])) |
@@ -411,7 +411,7 @@ discard block |
||
| 411 | 411 | public function build(): string |
| 412 | 412 | { |
| 413 | 413 | $fields = ''; |
| 414 | - if (! empty($this->fields)) { |
|
| 414 | + if (!empty($this->fields)) { |
|
| 415 | 415 | if (is_array($this->fields)) { |
| 416 | 416 | $fields = CreateDefinition::build($this->fields) . ' '; |
| 417 | 417 | } elseif ($this->fields instanceof ArrayObj) { |
@@ -450,23 +450,23 @@ discard block |
||
| 450 | 450 | |
| 451 | 451 | $partition = ''; |
| 452 | 452 | |
| 453 | - if (! empty($this->partitionBy)) { |
|
| 453 | + if (!empty($this->partitionBy)) { |
|
| 454 | 454 | $partition .= "\nPARTITION BY " . $this->partitionBy; |
| 455 | 455 | } |
| 456 | 456 | |
| 457 | - if (! empty($this->partitionsNum)) { |
|
| 457 | + if (!empty($this->partitionsNum)) { |
|
| 458 | 458 | $partition .= "\nPARTITIONS " . $this->partitionsNum; |
| 459 | 459 | } |
| 460 | 460 | |
| 461 | - if (! empty($this->subpartitionBy)) { |
|
| 461 | + if (!empty($this->subpartitionBy)) { |
|
| 462 | 462 | $partition .= "\nSUBPARTITION BY " . $this->subpartitionBy; |
| 463 | 463 | } |
| 464 | 464 | |
| 465 | - if (! empty($this->subpartitionsNum)) { |
|
| 465 | + if (!empty($this->subpartitionsNum)) { |
|
| 466 | 466 | $partition .= "\nSUBPARTITIONS " . $this->subpartitionsNum; |
| 467 | 467 | } |
| 468 | 468 | |
| 469 | - if (! empty($this->partitions)) { |
|
| 469 | + if (!empty($this->partitions)) { |
|
| 470 | 470 | $partition .= "\n" . PartitionDefinition::build($this->partitions); |
| 471 | 471 | } |
| 472 | 472 | |
@@ -490,7 +490,7 @@ discard block |
||
| 490 | 490 | . OptionsArray::build($this->options) . ' ' |
| 491 | 491 | . Expression::build($this->name) . ' ' |
| 492 | 492 | . $fields . ' AS ' . $builtStatement |
| 493 | - . (! empty($this->body) ? TokensList::build($this->body) : '') . ' ' |
|
| 493 | + . (!empty($this->body) ? TokensList::build($this->body) : '') . ' ' |
|
| 494 | 494 | . OptionsArray::build($this->entityOptions); |
| 495 | 495 | } |
| 496 | 496 | |
@@ -548,7 +548,7 @@ discard block |
||
| 548 | 548 | ] |
| 549 | 549 | ); |
| 550 | 550 | |
| 551 | - if (! isset($this->name) || ($this->name === '')) { |
|
| 551 | + if (!isset($this->name) || ($this->name === '')) { |
|
| 552 | 552 | $parser->error('The name of the entity was expected.', $list->tokens[$list->idx]); |
| 553 | 553 | } else { |
| 554 | 554 | ++$list->idx; // Skipping field. |
@@ -660,7 +660,7 @@ discard block |
||
| 660 | 660 | $token = $list->getNextOfType(Token::TYPE_NUMBER); |
| 661 | 661 | --$list->idx; // `getNextOfType` also advances one position. |
| 662 | 662 | $this->subpartitionsNum = $token->value; |
| 663 | - } elseif (! empty($field)) { |
|
| 663 | + } elseif (!empty($field)) { |
|
| 664 | 664 | /* |
| 665 | 665 | * Handling the content of `PARTITION BY` and `SUBPARTITION BY`. |
| 666 | 666 | */ |
@@ -689,7 +689,7 @@ discard block |
||
| 689 | 689 | $field = null; |
| 690 | 690 | } |
| 691 | 691 | } elseif (($token->type === Token::TYPE_OPERATOR) && ($token->value === '(')) { |
| 692 | - if (! empty($this->partitionBy)) { |
|
| 692 | + if (!empty($this->partitionBy)) { |
|
| 693 | 693 | $this->partitions = ArrayObj::parse( |
| 694 | 694 | $parser, |
| 695 | 695 | $list, |
@@ -357,13 +357,13 @@ discard block |
||
| 357 | 357 | * |
| 358 | 358 | * @param bool $isReserved checks if the keyword is reserved |
| 359 | 359 | */ |
| 360 | - public static function isKeyword(string $string, bool $isReserved = false): int|null |
|
| 360 | + public static function isKeyword(string $string, bool $isReserved = false): int | null |
|
| 361 | 361 | { |
| 362 | 362 | $upperString = strtoupper($string); |
| 363 | 363 | |
| 364 | 364 | if ( |
| 365 | - ! isset(static::$keywords[$upperString]) |
|
| 366 | - || ($isReserved && ! (static::$keywords[$upperString] & Token::FLAG_KEYWORD_RESERVED)) |
|
| 365 | + !isset(static::$keywords[$upperString]) |
|
| 366 | + || ($isReserved && !(static::$keywords[$upperString] & Token::FLAG_KEYWORD_RESERVED)) |
|
| 367 | 367 | ) { |
| 368 | 368 | return null; |
| 369 | 369 | } |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | /** |
| 375 | 375 | * Checks if the given string is an operator and returns the appropriate flag for the operator. |
| 376 | 376 | */ |
| 377 | - public static function isOperator(string $string): int|null |
|
| 377 | + public static function isOperator(string $string): int | null |
|
| 378 | 378 | { |
| 379 | 379 | return static::$operators[$string] ?? null; |
| 380 | 380 | } |
@@ -392,7 +392,7 @@ discard block |
||
| 392 | 392 | * |
| 393 | 393 | * @return int|null the appropriate flag for the comment type |
| 394 | 394 | */ |
| 395 | - public static function isComment(string $string, bool $end = false): int|null |
|
| 395 | + public static function isComment(string $string, bool $end = false): int | null |
|
| 396 | 396 | { |
| 397 | 397 | if ($string === '') { |
| 398 | 398 | return null; |
@@ -455,7 +455,7 @@ discard block |
||
| 455 | 455 | * |
| 456 | 456 | * @return int|null the appropriate flag for the symbol type |
| 457 | 457 | */ |
| 458 | - public static function isSymbol(string $string): int|null |
|
| 458 | + public static function isSymbol(string $string): int | null |
|
| 459 | 459 | { |
| 460 | 460 | if ($string === '') { |
| 461 | 461 | return null; |
@@ -483,7 +483,7 @@ discard block |
||
| 483 | 483 | * |
| 484 | 484 | * @return int|null the appropriate flag for the string type |
| 485 | 485 | */ |
| 486 | - public static function isString(string $string): int|null |
|
| 486 | + public static function isString(string $string): int | null |
|
| 487 | 487 | { |
| 488 | 488 | if ($string === '') { |
| 489 | 489 | return null; |
@@ -537,7 +537,7 @@ discard block |
||
| 537 | 537 | $context = self::$contextPrefix . $context; |
| 538 | 538 | } |
| 539 | 539 | |
| 540 | - if (! class_exists($context)) { |
|
| 540 | + if (!class_exists($context)) { |
|
| 541 | 541 | return false; |
| 542 | 542 | } |
| 543 | 543 | |
@@ -559,7 +559,7 @@ discard block |
||
| 559 | 559 | * |
| 560 | 560 | * @return string|null The loaded context. `null` if no context was loaded. |
| 561 | 561 | */ |
| 562 | - public static function loadClosest(string $context = ''): string|null |
|
| 562 | + public static function loadClosest(string $context = ''): string | null |
|
| 563 | 563 | { |
| 564 | 564 | $length = strlen($context); |
| 565 | 565 | for ($i = $length; $i > 0;) { |
@@ -573,7 +573,7 @@ discard block |
||
| 573 | 573 | $i -= 2; |
| 574 | 574 | $part = substr($context, $i, 2); |
| 575 | 575 | /* No more numeric parts to strip */ |
| 576 | - if (! is_numeric($part)) { |
|
| 576 | + if (!is_numeric($part)) { |
|
| 577 | 577 | break 2; |
| 578 | 578 | } |
| 579 | 579 | } while (intval($part) === 0 && $i > 0); |
@@ -675,7 +675,7 @@ discard block |
||
| 675 | 675 | */ |
| 676 | 676 | public static function escape(string $str, string $quote = '`') |
| 677 | 677 | { |
| 678 | - if ((static::$mode & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (! static::isKeyword($str, true))) { |
|
| 678 | + if ((static::$mode & self::SQL_MODE_NO_ENCLOSING_QUOTES) && (!static::isKeyword($str, true))) { |
|
| 679 | 679 | return $str; |
| 680 | 680 | } |
| 681 | 681 | |
@@ -719,7 +719,7 @@ discard block |
||
| 719 | 719 | * |
| 720 | 720 | * @return bool false on empty param, true/false on given constant/int value |
| 721 | 721 | */ |
| 722 | - public static function hasMode(int|null $flag = null): bool |
|
| 722 | + public static function hasMode(int | null $flag = null): bool |
|
| 723 | 723 | { |
| 724 | 724 | if (empty($flag)) { |
| 725 | 725 | return false; |
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | $state = 4; |
| 244 | 244 | } elseif ($token->type === Token::TYPE_SYMBOL || $token->type === Token::TYPE_NONE) { |
| 245 | 245 | $expr->name = $token->value; |
| 246 | - if (! $expr->isConstraint) { |
|
| 246 | + if (!$expr->isConstraint) { |
|
| 247 | 247 | $state = 2; |
| 248 | 248 | } |
| 249 | 249 | } elseif ($token->type === Token::TYPE_KEYWORD) { |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | |
| 285 | 285 | $state = 5; |
| 286 | 286 | } elseif ($state === 5) { |
| 287 | - if (! empty($expr->type) || ! empty($expr->key)) { |
|
| 287 | + if (!empty($expr->type) || !empty($expr->key)) { |
|
| 288 | 288 | $ret[] = $expr; |
| 289 | 289 | } |
| 290 | 290 | |
@@ -304,7 +304,7 @@ discard block |
||
| 304 | 304 | } |
| 305 | 305 | |
| 306 | 306 | // Last iteration was not saved. |
| 307 | - if (! empty($expr->type) || ! empty($expr->key)) { |
|
| 307 | + if (!empty($expr->type) || !empty($expr->key)) { |
|
| 308 | 308 | $ret[] = $expr; |
| 309 | 309 | } |
| 310 | 310 | |
@@ -336,16 +336,16 @@ discard block |
||
| 336 | 336 | $tmp .= Context::escape($component->name) . ' '; |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | - if (! empty($component->type)) { |
|
| 339 | + if (!empty($component->type)) { |
|
| 340 | 340 | $component->type->lowercase = true; |
| 341 | 341 | $tmp .= DataType::build($component->type) . ' '; |
| 342 | 342 | } |
| 343 | 343 | |
| 344 | - if (! empty($component->key)) { |
|
| 344 | + if (!empty($component->key)) { |
|
| 345 | 345 | $tmp .= $component->key . ' '; |
| 346 | 346 | } |
| 347 | 347 | |
| 348 | - if (! empty($component->references)) { |
|
| 348 | + if (!empty($component->references)) { |
|
| 349 | 349 | $tmp .= 'REFERENCES ' . $component->references . ' '; |
| 350 | 350 | } |
| 351 | 351 | |
@@ -264,7 +264,7 @@ |
||
| 264 | 264 | public static function build($component): string |
| 265 | 265 | { |
| 266 | 266 | if ($component->dest instanceof Expression) { |
| 267 | - $columns = ! empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
| 267 | + $columns = !empty($component->columns) ? '(`' . implode('`, `', $component->columns) . '`)' : ''; |
|
| 268 | 268 | |
| 269 | 269 | return $component->dest . $columns; |
| 270 | 270 | } |
@@ -50,11 +50,11 @@ |
||
| 50 | 50 | */ |
| 51 | 51 | public static function build($component): string |
| 52 | 52 | { |
| 53 | - if (! $component instanceof WithKeyword) { |
|
| 53 | + if (!$component instanceof WithKeyword) { |
|
| 54 | 54 | throw new RuntimeException('Can not build a component that is not a WithKeyword'); |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | - if (! isset($component->statement)) { |
|
| 57 | + if (!isset($component->statement)) { |
|
| 58 | 58 | throw new RuntimeException('No statement inside WITH'); |
| 59 | 59 | } |
| 60 | 60 | |