Completed
Push — master ( 082cdd...2ef79b )
by Martijn
03:19
created
src/Core/Context/CaseSensitiveContextTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 
9 9
     public function pushCaseSensitivity($caseSensitive = true)
10 10
     {
11
-        array_push($this->caseSensitivity, (bool)$caseSensitive);
11
+        array_push($this->caseSensitivity, (bool) $caseSensitive);
12 12
     }
13 13
 
14 14
     public function popCaseSensitivity()
Please login to merge, or discard this patch.
src/Parser/Structure/Repeat.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
             if ($skip !== false) {
70 70
                 $match = $this->parser->parse($input, $offset + $length + $skip, $context);
71 71
                 if ($match instanceof Success) {
72
-                    $length          += $skip + $match->length;
72
+                    $length += $skip + $match->length;
73 73
                     $childMatches[] = $match;
74 74
                 }
75 75
             }
Please login to merge, or discard this patch.