@@ -77,7 +77,7 @@ |
||
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | /** |
| 80 | - * @return int|mixed |
|
| 80 | + * @return integer |
|
| 81 | 81 | */ |
| 82 | 82 | public function key() |
| 83 | 83 | { |
@@ -101,7 +101,7 @@ |
||
| 101 | 101 | */ |
| 102 | 102 | public function next(): void |
| 103 | 103 | { |
| 104 | - $this->valid = $this->iterator->valid(); |
|
| 104 | + $this->valid = $this->iterator->valid(); |
|
| 105 | 105 | |
| 106 | 106 | if ($this->valid === false) { |
| 107 | 107 | return; |
@@ -133,7 +133,7 @@ |
||
| 133 | 133 | */ |
| 134 | 134 | protected function set(string $group, string $name, string $value): void |
| 135 | 135 | { |
| 136 | - if (! \array_key_exists($group, $this->configs)) { |
|
| 136 | + if (!\array_key_exists($group, $this->configs)) { |
|
| 137 | 137 | $this->configs[$group] = []; |
| 138 | 138 | } |
| 139 | 139 | |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | */ |
| 32 | 32 | public function __construct(string $prefix, array $allowed) |
| 33 | 33 | { |
| 34 | - $this->prefix = \trim($prefix, '.') . '.'; |
|
| 34 | + $this->prefix = \trim($prefix, '.').'.'; |
|
| 35 | 35 | $this->allowed = $allowed; |
| 36 | 36 | } |
| 37 | 37 | |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | */ |
| 70 | 70 | public function isKeep(string $token): bool |
| 71 | 71 | { |
| 72 | - return ! \in_array($token, $this->skipped, true); |
|
| 72 | + return !\in_array($token, $this->skipped, true); |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -71,7 +71,7 @@ |
||
| 71 | 71 | $lexer = new NativeStateless(); |
| 72 | 72 | |
| 73 | 73 | foreach ($this->tokens->all() as $name => $pcre) { |
| 74 | - $lexer->add($name, $pcre, ! $this->tokens->isKeep($name)); |
|
| 74 | + $lexer->add($name, $pcre, !$this->tokens->isKeep($name)); |
|
| 75 | 75 | } |
| 76 | 76 | |
| 77 | 77 | return $lexer; |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | return $this->lastId++; |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | - if (! $this->has($rule)) { |
|
| 37 | + if (!$this->has($rule)) { |
|
| 38 | 38 | $this->mappings[$rule] = $this->lastId++; |
| 39 | 39 | } |
| 40 | 40 | |
@@ -9,7 +9,6 @@ |
||
| 9 | 9 | |
| 10 | 10 | namespace Railt\Compiler\Grammar\PP2\Delegate; |
| 11 | 11 | |
| 12 | -use Railt\Parser\Ast\Rule; |
|
| 13 | 12 | use Railt\Parser\Rule\Symbol; |
| 14 | 13 | |
| 15 | 14 | /** |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | return $this->getRule(); |
| 27 | 27 | } |
| 28 | 28 | |
| 29 | - dd((string)$first); |
|
| 29 | + dd((string) $first); |
|
| 30 | 30 | } |
| 31 | 31 | |
| 32 | 32 | private function getRule(): Symbol |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | } |
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | - * @param RuleInterface|NodeInterface $repetition |
|
| 34 | + * @param null|NodeInterface $repetition |
|
| 35 | 35 | * @return array |
| 36 | 36 | */ |
| 37 | 37 | private function getInterval(RuleInterface $repetition): array |
@@ -10,7 +10,6 @@ |
||
| 10 | 10 | namespace Railt\Compiler\Grammar\PP2\Delegate; |
| 11 | 11 | |
| 12 | 12 | use Railt\Parser\Ast\NodeInterface; |
| 13 | -use Railt\Parser\Ast\Rule; |
|
| 14 | 13 | use Railt\Parser\Ast\RuleInterface; |
| 15 | 14 | use Railt\Parser\Rule\Repetition; |
| 16 | 15 | use Railt\Parser\Rule\Symbol; |
@@ -37,17 +37,17 @@ discard block |
||
| 37 | 37 | private function getInterval(RuleInterface $repetition): array |
| 38 | 38 | { |
| 39 | 39 | switch (true) { |
| 40 | - case (bool)$repetition->first('T_ZERO_OR_MORE'): |
|
| 40 | + case (bool) $repetition->first('T_ZERO_OR_MORE'): |
|
| 41 | 41 | return [0, Repetition::INF_MAX_VALUE]; |
| 42 | 42 | |
| 43 | - case (bool)$repetition->first('T_ONE_OR_MORE'): |
|
| 43 | + case (bool) $repetition->first('T_ONE_OR_MORE'): |
|
| 44 | 44 | return [1, Repetition::INF_MAX_VALUE]; |
| 45 | 45 | |
| 46 | - case (bool)$repetition->first('T_ZERO_OR_ONE'): |
|
| 46 | + case (bool) $repetition->first('T_ZERO_OR_ONE'): |
|
| 47 | 47 | return [0, 1]; |
| 48 | 48 | |
| 49 | - case (bool)($repeat = $repetition->first('Repeat')): |
|
| 50 | - $value = (int)$repeat->first('T_NUMBER')->getValue(); |
|
| 49 | + case (bool) ($repeat = $repetition->first('Repeat')): |
|
| 50 | + $value = (int) $repeat->first('T_NUMBER')->getValue(); |
|
| 51 | 51 | |
| 52 | 52 | return [$value, $value]; |
| 53 | 53 | break; |
@@ -56,11 +56,11 @@ discard block |
||
| 56 | 56 | $from = $to = Repetition::INF_MAX_VALUE; |
| 57 | 57 | |
| 58 | 58 | if ($nodeFrom = $repetition->first('From')) { |
| 59 | - $from = (int)$nodeFrom->first('T_NUMBER')->getValue(); |
|
| 59 | + $from = (int) $nodeFrom->first('T_NUMBER')->getValue(); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | if ($nodeTo = $repetition->first('To')) { |
| 63 | - $to = (int)$nodeTo->first('T_NUMBER')->getValue(); |
|
| 63 | + $to = (int) $nodeTo->first('T_NUMBER')->getValue(); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | return [$from, $to]; |
@@ -38,26 +38,26 @@ |
||
| 38 | 38 | |
| 39 | 39 | public function all(): array |
| 40 | 40 | { |
| 41 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 41 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | public function getDelegates(): iterable |
| 45 | 45 | { |
| 46 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 46 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 47 | 47 | } |
| 48 | 48 | |
| 49 | 49 | public function getFile(string $rule): Readable |
| 50 | 50 | { |
| 51 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 51 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | public function has(string $rule): bool |
| 55 | 55 | { |
| 56 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 56 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | public function isKeep(string $rule): bool |
| 60 | 60 | { |
| 61 | - throw new \LogicException(__METHOD__ . ' not implemented yet'); |
|
| 61 | + throw new \LogicException(__METHOD__.' not implemented yet'); |
|
| 62 | 62 | } |
| 63 | 63 | } |