@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | public function ignoreWhitespace() |
129 | 129 | { |
130 | 130 | ignoreWhitespace: |
131 | - if (! $this->isEnd() && $this->currentAscii()->isWhiteSpace()) { |
|
131 | + if (!$this->isEnd() && $this->currentAscii()->isWhiteSpace()) { |
|
132 | 132 | $this->next(); |
133 | 133 | goto ignoreWhitespace; |
134 | 134 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | public function ignoreVerticalSpace() |
157 | 157 | { |
158 | 158 | ignoreHorizontalSpace: |
159 | - if (! $this->isEnd() && $this->currentAscii()->isVerticalSpace()) { |
|
159 | + if (!$this->isEnd() && $this->currentAscii()->isVerticalSpace()) { |
|
160 | 160 | $this->next(); |
161 | 161 | goto ignoreHorizontalSpace; |
162 | 162 | } |