Completed
Pull Request — master (#4)
by
unknown
09:05
created
src/LTDBeget/stringstream/StringStream.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
         }
Please login to merge, or discard this patch.