@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | */ |
| 29 | 29 | public function getInnerTokens(): iterable |
| 30 | 30 | { |
| 31 | - return new LookaheadIterator((function () { |
|
| 31 | + return new LookaheadIterator((function() { |
|
| 32 | 32 | yield from $this->getTokens($this->first('RuleProduction')); |
| 33 | 33 | yield new Eoi(0); |
| 34 | 34 | })->call($this)); |
@@ -66,7 +66,7 @@ discard block |
||
| 66 | 66 | */ |
| 67 | 67 | public function isKept(): bool |
| 68 | 68 | { |
| 69 | - return (bool)$this->first('ShouldKeep'); |
|
| 69 | + return (bool) $this->first('ShouldKeep'); |
|
| 70 | 70 | } |
| 71 | 71 | |
| 72 | 72 | /** |