Completed
Push — master ( 5dda48...9477b8 )
by Kacper
03:00
created
Language/Perl.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             'string.nowdoc'  => new Rule(
67 67
                 new RegexMatcher('/<<\s*\'(\w+)\';(?P<string>.*?)\n\1/sm', [
68 68
                     'string' => Token::NAME,
69
-                          0  => 'keyword.nowdoc'
69
+                            0  => 'keyword.nowdoc'
70 70
                 ]), ['context' => ['!comment']]
71 71
             ),
72 72
 
Please login to merge, or discard this patch.
Parser/Token/Token.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -85,7 +85,7 @@
 block discarded – undo
85 85
         return $this->_end === null;
86 86
     }
87 87
 
88
-     public function isValid(Context $context)
88
+        public function isValid(Context $context)
89 89
     {
90 90
         if ($this->_valid === null) {
91 91
             $this->validate($context);
Please login to merge, or discard this patch.
KeyLighter.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,6 @@
 block discarded – undo
18 18
 use Kadet\Highlighter\Formatter\CliFormatter;
19 19
 use Kadet\Highlighter\Formatter\FormatterInterface;
20 20
 use Kadet\Highlighter\Formatter\HtmlFormatter;
21
-use Kadet\Highlighter\Language\GreedyLanguage;
22 21
 use Kadet\Highlighter\Language\Language;
23 22
 use Kadet\Highlighter\Language\PlainText;
24 23
 use Kadet\Highlighter\Utils\Singleton;
Please login to merge, or discard this patch.