@@ -8,7 +8,7 @@ |
||
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() |
@@ -69,7 +69,7 @@ |
||
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 | } |