Completed
Branch 0.8-dev (1750db)
by Kacper
02:34
created
Parser/Token/ContextualToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
                 $this->_end->_valid = false;
44 44
             }
45 45
         } else {
46
-            if (!$this->rule->validator->validate($context, [ $this->name => Validator::CONTEXT_IN ])) {
46
+            if (!$this->rule->validator->validate($context, [$this->name => Validator::CONTEXT_IN])) {
47 47
                 $this->setValid(false);
48 48
             } else {
49 49
                 $this->_valid       = false;
Please login to merge, or discard this patch.
Parser/Token/TerminatorToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
 
46 46
     protected function processEnd(Context $context, Language $language, Result $result, TokenIterator $tokens)
47 47
     {
48
-        foreach(array_filter($context->stack, function ($name) {
48
+        foreach (array_filter($context->stack, function($name) {
49 49
             return in_array($name, $this->closes);
50 50
         }) as $hash => $name) {
51 51
             $end = new Token([$name, 'pos' => $this->pos]);
Please login to merge, or discard this patch.
Parser/Context.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
     public function find($needle) {
32 32
         foreach (array_reverse($this->stack, true) as $id => $name) {
33
-            if($name === $needle) {
33
+            if ($name === $needle) {
34 34
                 return $id;
35 35
             }
36 36
         }
Please login to merge, or discard this patch.
Parser/Result.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
         $this->_source = $source;
29 29
         $this->_start  = $start;
30 30
 
31
-        parent::__construct($start !== null ? [ $start->id => $start ] : [], 0, \ArrayIterator::class);
31
+        parent::__construct($start !== null ? [$start->id => $start] : [], 0, \ArrayIterator::class);
32 32
     }
33 33
 
34 34
     public function getSource()
Please login to merge, or discard this patch.
Language/Html.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         $css = new Css();
34 34
         $js  = new JavaScript();
35 35
         $this->rules->addMany([
36
-            'language.'.$js->getIdentifier() => [
36
+            'language.' . $js->getIdentifier() => [
37 37
                 new OpenRule(new RegexMatcher('/<script.*?>()/'), [
38 38
                     'factory'     => new TokenFactory(LanguageToken::class),
39 39
                     'inject'      => $js,
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
                     'language' => $js
46 46
                 ])
47 47
             ],
48
-            'language.'.$css->getIdentifier() => [
48
+            'language.' . $css->getIdentifier() => [
49 49
                 new OpenRule(new RegexMatcher('/<style.*?>()/'), [
50 50
                     'factory'     => new TokenFactory(LanguageToken::class),
51 51
                     'inject'      => $css,
Please login to merge, or discard this patch.
Matcher/CommentMatcher.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     public function __construct(array $singleLine = null, array $multiLine = null)
32 32
     {
33 33
         $this->singleLine = $singleLine ?: [];
34
-        $this->multiLine  = $multiLine  ?: [];
34
+        $this->multiLine  = $multiLine ?: [];
35 35
     }
36 36
 
37 37
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
         $all = [];
50 50
 
51 51
         foreach ($this->multiLine as $name => $comment) {
52
-            $comment = array_map(function ($e) { return preg_quote($e, '/'); }, $comment);
52
+            $comment = array_map(function($e) { return preg_quote($e, '/'); }, $comment);
53 53
 
54 54
             $all[] = [$name, "/{$comment[0]}(.*?){$comment[1]}/ms"];
55 55
         }
Please login to merge, or discard this patch.
Matcher/DelegateRegexMatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
 
50 50
         $callable = $this->callable;
51 51
         foreach ($matches as $match) {
52
-            foreach($callable($match, $factory) as $token) {
52
+            foreach ($callable($match, $factory) as $token) {
53 53
                 yield $token;
54 54
             }
55 55
         }
Please login to merge, or discard this patch.
Parser/Token/LanguageToken.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 {
33 33
     public function __construct($name, $options = []) {
34 34
         parent::__construct($name, $options);
35
-        if(isset($options['inject'])) {
35
+        if (isset($options['inject'])) {
36 36
             $this->inject = $options['inject'];
37 37
         }
38 38
     }
Please login to merge, or discard this patch.
Parser/Token/Token.php 1 patch
Spacing   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     public function __construct($name = null, array $options = [])
62 62
     {
63
-        $this->name     = $name;
63
+        $this->name = $name;
64 64
 
65 65
         if (isset($options['pos'])) {
66 66
             $this->pos = $options['pos'];
@@ -182,13 +182,12 @@  discard block
 block discarded – undo
182 182
      * @return bool Return true to continue processing, false to return already processed tokens.
183 183
      */
184 184
     public function process(Context $context, Language $language, Result $result, TokenIterator $tokens) {
185
-        if(!$this->isValid($context)) {
185
+        if (!$this->isValid($context)) {
186 186
             return true;
187 187
         }
188 188
 
189 189
         return $this->isStart() ?
190
-            $this->processStart($context, $language, $result, $tokens) :
191
-            $this->processEnd($context, $language, $result, $tokens);
190
+            $this->processStart($context, $language, $result, $tokens) : $this->processEnd($context, $language, $result, $tokens);
192 191
     }
193 192
 
194 193
     protected function processStart(Context $context, Language $language, Result $result, TokenIterator $tokens) {
@@ -199,7 +198,7 @@  discard block
 block discarded – undo
199 198
     }
200 199
 
201 200
     protected function processEnd(Context $context, Language $language, Result $result, TokenIterator $tokens) {
202
-        if($this->_start) {
201
+        if ($this->_start) {
203 202
             $context->pop($this->_start);
204 203
         } else {
205 204
             if (($start = $context->find($this->name)) !== false) {
@@ -229,11 +228,11 @@  discard block
 block discarded – undo
229 228
                 return $multiplier;
230 229
             }
231 230
         } elseif (($rule = Helper::cmp($b->rule->priority, $a->rule->priority)) !== 0) {
232
-            return $multiplier*$rule;
231
+            return $multiplier * $rule;
233 232
         } elseif (($rule = Helper::cmp($b->index, $a->index)) !== 0) {
234
-            return $multiplier*$rule;
233
+            return $multiplier * $rule;
235 234
         } else {
236
-            return $multiplier*($a->id < $b->id ? -1 : 1);
235
+            return $multiplier * ($a->id < $b->id ? -1 : 1);
237 236
         }
238 237
     }
239 238
 }
Please login to merge, or discard this patch.