Test Failed
Push — master ( 3ca5bd...939415 )
by Kirill
02:50
created
src/Driver/Lexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public function lex(Readable $input): \Traversable
36 36
     {
37 37
         foreach ($this->exec($input) as $token) {
38
-            if (! \in_array($token->getName(), $this->skipped, true)) {
38
+            if (!\in_array($token->getName(), $this->skipped, true)) {
39 39
                 yield $token;
40 40
             }
41 41
         }
Please login to merge, or discard this patch.
src/Driver/ParleLexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             $this->map[$this->id]    = $name;
73 73
             $this->tokens[$this->id] = $pcre;
74 74
         } catch (LexerException $e) {
75
-            $message = \preg_replace('/rule\h+id\h+\d+/iu', 'token ' . $name, $e->getMessage());
75
+            $message = \preg_replace('/rule\h+id\h+\d+/iu', 'token '.$name, $e->getMessage());
76 76
 
77 77
             throw new BadLexemeException($message);
78 78
         }
Please login to merge, or discard this patch.