Passed
Branch symfony-console (1f7bcb)
by Kacper
03:39
created
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/TokenFactory.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @return false|Token|null
50 50
      */
51
-    public function create($name, $params = [ ])
51
+    public function create($name, $params = [])
52 52
     {
53 53
         if ($name !== null) {
54 54
             $name = $this->getName($name);
@@ -72,29 +72,29 @@  discard block
 block discarded – undo
72 72
     }
73 73
 
74 74
     private function link($name, $params) {
75
-        if($this->_type & Token::START) {
76
-            if(!isset($params['start'])) {
75
+        if ($this->_type & Token::START) {
76
+            if (!isset($params['start'])) {
77 77
                 $params['start'] = new $params['class']($name, $params);
78 78
             }
79 79
 
80
-            if($this->_type === Token::START) {
80
+            if ($this->_type === Token::START) {
81 81
                 $params['start']->setEnd(false);
82 82
                 return $params['start'];
83 83
             }
84 84
         }
85 85
 
86
-        if($this->_type & Token::END) {
86
+        if ($this->_type & Token::END) {
87 87
             if (isset($params['length'])) {
88 88
                 $end = $params;
89 89
                 $end['pos'] += $params['length'];
90 90
 
91 91
                 /** @var Token $end */
92 92
                 $params['end'] = new $params['class']($name, $end);
93
-            } elseif(!isset($params['end'])) {
93
+            } elseif (!isset($params['end'])) {
94 94
                 $params['end'] = new $params['class']($name, $params);
95 95
             }
96 96
 
97
-            if($this->_type === Token::END) {
97
+            if ($this->_type === Token::END) {
98 98
                 $params['end']->setStart(false);
99 99
                 return $params['end'];
100 100
             }
Please login to merge, or discard this patch.
Parser/Token/Token.php 1 patch
Spacing   +6 added lines, -7 removed lines patch added patch discarded remove patch
@@ -178,13 +178,12 @@  discard block
 block discarded – undo
178 178
      * @return bool Return true to continue processing, false to return already processed tokens.
179 179
      */
180 180
     public function process(Context $context, Language $language, Result $result, TokenIterator $tokens) {
181
-        if(!$this->isValid($context)) {
181
+        if (!$this->isValid($context)) {
182 182
             return true;
183 183
         }
184 184
 
185 185
         return $this->isStart() ?
186
-            $this->processStart($context, $language, $result, $tokens) :
187
-            $this->processEnd($context, $language, $result, $tokens);
186
+            $this->processStart($context, $language, $result, $tokens) : $this->processEnd($context, $language, $result, $tokens);
188 187
     }
189 188
 
190 189
     protected function processStart(Context $context, Language $language, Result $result, TokenIterator $tokens) {
@@ -195,7 +194,7 @@  discard block
 block discarded – undo
195 194
     }
196 195
 
197 196
     protected function processEnd(Context $context, Language $language, Result $result, TokenIterator $tokens) {
198
-        if($this->_start) {
197
+        if ($this->_start) {
199 198
             $context->pop($this->_start);
200 199
         } else {
201 200
             if (($start = $context->find($this->name)) !== false) {
@@ -225,9 +224,9 @@  discard block
 block discarded – undo
225 224
                 return $multiplier;
226 225
             }
227 226
         } elseif (($rule = Helper::cmp($b->rule->priority, $a->rule->priority)) !== 0) {
228
-            return $multiplier*$rule;
229
-        }  else {
230
-            return $multiplier*($a->id < $b->id ? -1 : 1);
227
+            return $multiplier * $rule;
228
+        } else {
229
+            return $multiplier * ($a->id < $b->id ? -1 : 1);
231 230
         }
232 231
     }
233 232
 }
Please login to merge, or discard this patch.
Utils/ConsoleHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
 
112 112
     private function _set($style)
113 113
     {
114
-        $escape = "\e[".implode(';', array_map(function ($style, $name) {
114
+        $escape = "\e[".implode(';', array_map(function($style, $name) {
115 115
             return $this->_style($style, $name);
116 116
         }, array_keys($style), $style)).'m';
117 117
 
Please login to merge, or discard this patch.
Formatter/HtmlFormatter.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
         /** @var Token $token */
36 36
         foreach ($tokens as $token) {
37 37
             $result .= htmlspecialchars(substr($source, $last, $token->pos - $last));
38
-            $result .= $token->isStart() ? '<span class="' . str_replace('.', ' ', $token->name) . '">' : '</span>';
38
+            $result .= $token->isStart() ? '<span class="'.str_replace('.', ' ', $token->name).'">' : '</span>';
39 39
 
40 40
             $last = $token->pos;
41 41
         }
Please login to merge, or discard this patch.
Language/Latex.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
                 new Rule(new RegexMatcher('/(\\\\\[.*?\\\\\])/s')),
41 41
                 new Rule(
42 42
                     new RegexMatcher(
43
-                        '/\\\begin{((?:' . implode('|', self::$mathEnvironments) . ')\*?)}(.*?)\\\end{\1}/s',
43
+                        '/\\\begin{((?:'.implode('|', self::$mathEnvironments).')\*?)}(.*?)\\\end{\1}/s',
44 44
                         [2 => Token::NAME]
45 45
                     )
46 46
                 ),
Please login to merge, or discard this patch.
Language/GreedyLanguage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $result   = new Result($tokens->getSource(), $tokens->current());
98 98
 
99 99
         for ($tokens->next(); $tokens->valid(); $tokens->next()) {
100
-            if(!$tokens->current()->process($context, $this, $result, $tokens)) {
100
+            if (!$tokens->current()->process($context, $this, $result, $tokens)) {
101 101
                 break;
102 102
             }
103 103
         }
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
     private function _rules($embedded = false)
148 148
     {
149 149
         $rules = clone $this->rules;
150
-        if(is_bool($embedded)) {
150
+        if (is_bool($embedded)) {
151 151
             $rules->addMany(['language.'.$this->getIdentifier() => $this->getEnds($embedded)]);
152 152
         }
153 153
 
Please login to merge, or discard this patch.
Language/JavaScript.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
                 ['/*', '*/']
63 63
             ]), ['priority' => 3]),
64 64
 
65
-            'call' => new Rule(new RegexMatcher('/(' . self::IDENTIFIER . ')\s*\(/iu'), ['priority' => -1]),
65
+            'call' => new Rule(new RegexMatcher('/('.self::IDENTIFIER.')\s*\(/iu'), ['priority' => -1]),
66 66
 
67 67
             'keyword' => new Rule(new WordMatcher([
68 68
                 'do', 'if', 'in', 'for', 'let', 'new', 'try', 'var', 'case', 'else', 'enum', 'eval', 'false',
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
                 ])
89 89
             ],
90 90
 
91
-            'variable' => new Rule(new RegexMatcher('/\b(?<!\.)(' . self::IDENTIFIER . ':?)/iu'), [
91
+            'variable' => new Rule(new RegexMatcher('/\b(?<!\.)('.self::IDENTIFIER.':?)/iu'), [
92 92
                 'priority' => -1,
93 93
                 'enabled'  => $this->variables
94 94
             ])
Please login to merge, or discard this patch.
Language/Xml.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,12 +38,12 @@
 block discarded – undo
38 38
             ],
39 39
             'tag.close' => new Rule(new RegexMatcher('/(<\/(?:\w+:)?(?:[\w\.]+)>)/')),
40 40
 
41
-            'symbol.tag' => new Rule(new RegexMatcher('/<\\/?' . self::IDENTIFIER . '/', [
41
+            'symbol.tag' => new Rule(new RegexMatcher('/<\\/?'.self::IDENTIFIER.'/', [
42 42
                 'name'      => Token::NAME,
43 43
                 'namespace' => '$.namespace'
44 44
             ]), ['context' => ['tag', '!string']]),
45 45
 
46
-            'symbol.attribute' => new Rule(new RegexMatcher('/' . self::IDENTIFIER . '=/', [
46
+            'symbol.attribute' => new Rule(new RegexMatcher('/'.self::IDENTIFIER.'=/', [
47 47
                 'name'      => Token::NAME,
48 48
                 'namespace' => '$.namespace'
49 49
             ]), ['context' => ['tag', '!string']]),
Please login to merge, or discard this patch.