Completed
Push — master ( 316866...7dfe73 )
by Kirill
11:14 queued 08:59
created
src/Grammar/Delegate/RuleDelegate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
     /**
Please login to merge, or discard this patch.