Passed
Push — master ( 2a6b88...c849ec )
by Sergey
06:29
created
src/LTDBeget/sphinx/Tokenizer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     {
33 33
         $tokens = [];
34 34
 
35
-        if(! empty($plainData)) {
35
+        if (!empty($plainData)) {
36 36
             $tokens = (new self($plainData))->tokenizeInternal()->tokens;
37 37
         }
38 38
 
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
             start:
220 220
             $this->stream->ignoreWhitespace();
221 221
 
222
-            if($this->stream->isEnd()) {
222
+            if ($this->stream->isEnd()) {
223 223
                 throw new SyntaxErrorException($this->stream);
224 224
             }
225 225
 
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
         start:
291 291
         $char = $this->stream->currentAscii();
292 292
         
293
-        if($this->stream->isEnd()) {
293
+        if ($this->stream->isEnd()) {
294 294
             throw new SyntaxErrorException($this->stream);
295 295
         }
296 296
 
Please login to merge, or discard this patch.