Completed
Push — master ( 9ad54b...895d73 )
by Federico
03:21
created
dist/jate/modules/ExternalModules/pug-php/pug/src/Jade/Compiler.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
      */
178 178
     protected function closingTag()
179 179
     {
180
-        return '?>' . ($this->prettyprint ? ' ' : '');
180
+        return '?>'.($this->prettyprint ? ' ' : '');
181 181
     }
182 182
 
183 183
     /**
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
 
194 194
         // Separate in several lines to get a useable line number in case of an error occurs
195 195
         if ($this->phpSingleLine) {
196
-            $code = str_replace(array('<?php', '?>'), array("<?php\n", "\n" . $this->closingTag()), $code);
196
+            $code = str_replace(array('<?php', '?>'), array("<?php\n", "\n".$this->closingTag()), $code);
197 197
         }
198 198
         // Remove the $ wich are not needed
199 199
         return $code;
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
     protected function buffer($line, $indent = null)
224 224
     {
225 225
         if ($indent === true || ($indent === null && $this->prettyprint)) {
226
-            $line = $this->indent() . $line . $this->newline();
226
+            $line = $this->indent().$line.$this->newline();
227 227
         }
228 228
 
229 229
         $this->buffer[] = $line;
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
      */
237 237
     protected function isConstant($str)
238 238
     {
239
-        return preg_match('/^' . static::CONSTANT_VALUE . '$/', trim($str));
239
+        return preg_match('/^'.static::CONSTANT_VALUE.'$/', trim($str));
240 240
     }
241 241
 
242 242
     /**
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
                 $quote = substr($match[1], 0, 1);
291 291
 
292 292
                 if (strlen(trim($match[2]))) {
293
-                    throw new \ErrorException('Unexpected value: ' . $match[2], 8);
293
+                    throw new \ErrorException('Unexpected value: '.$match[2], 8);
294 294
                 }
295 295
 
296 296
                 array_push($resultsString, $match[1]);
@@ -352,7 +352,7 @@  discard block
 block discarded – undo
352 352
             $arg = static::convertVarPath($arg);
353 353
 
354 354
             // add dollar if missing
355
-            if (preg_match('/^' . static::VARNAME . '(\s*,.+)?$/', $arg)) {
355
+            if (preg_match('/^'.static::VARNAME.'(\s*,.+)?$/', $arg)) {
356 356
                 $arg = static::addDollarIfNeeded($arg);
357 357
             }
358 358
 
@@ -363,7 +363,7 @@  discard block
 block discarded – undo
363 363
             }
364 364
 
365 365
             // if we have a php variable assume that the string is good php
366
-            if (strpos('{[', substr($arg, 0, 1)) === false && preg_match('/&?\${1,2}' . static::VARNAME . '|[A-Za-z0-9_\\\\]+::/', $arg)) {
366
+            if (strpos('{[', substr($arg, 0, 1)) === false && preg_match('/&?\${1,2}'.static::VARNAME.'|[A-Za-z0-9_\\\\]+::/', $arg)) {
367 367
                 array_push($variables, $arg);
368 368
                 continue;
369 369
             }
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
             try {
393 393
                 return $this->handleCode(preg_replace('#/\*(.*)\*/#', '', $arg));
394 394
             } catch (\Exception $e) {
395
-                throw new ParserException('Pug.php did not understand ' . $arg, 10, $e);
395
+                throw new ParserException('Pug.php did not understand '.$arg, 10, $e);
396 396
             }
397 397
         }
398 398
     }
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
     protected function createPhpBlock($code, $statements = null)
407 407
     {
408 408
         if ($statements === null) {
409
-            return '<?php ' . $code . ' ' . $this->closingTag();
409
+            return '<?php '.$code.' '.$this->closingTag();
410 410
         }
411 411
 
412 412
         $codeFormat = array_pop($statements);
@@ -415,20 +415,20 @@  discard block
 block discarded – undo
415 415
         if (count($statements) === 0) {
416 416
             $phpString = call_user_func_array('sprintf', $codeFormat);
417 417
 
418
-            return '<?php ' . $phpString . ' ' . $this->closingTag();
418
+            return '<?php '.$phpString.' '.$this->closingTag();
419 419
         }
420 420
 
421 421
         $stmtString = '';
422 422
         foreach ($statements as $stmt) {
423
-            $stmtString .= $this->newline() . $this->indent() . $stmt . ';';
423
+            $stmtString .= $this->newline().$this->indent().$stmt.';';
424 424
         }
425 425
 
426
-        $stmtString .= $this->newline() . $this->indent();
426
+        $stmtString .= $this->newline().$this->indent();
427 427
         $stmtString .= call_user_func_array('sprintf', $codeFormat);
428 428
 
429 429
         $phpString = '<?php ';
430 430
         $phpString .= $stmtString;
431
-        $phpString .= $this->newline() . $this->indent() . ' ' . $this->closingTag();
431
+        $phpString .= $this->newline().$this->indent().' '.$this->closingTag();
432 432
 
433 433
         return $phpString;
434 434
     }
Please login to merge, or discard this patch.
dist/jate/modules/ExternalModules/pug-php/pug/src/Jade/Lexer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -183,7 +183,7 @@
 block discarded – undo
183 183
             'AndAttributes',
184 184
             'Text',
185 185
         ) as $tokenType) {
186
-            if ($token = $this->{'scan' . $tokenType}()) {
186
+            if ($token = $this->{'scan'.$tokenType}()) {
187 187
                 return $token;
188 188
             }
189 189
         }
Please login to merge, or discard this patch.
modules/ExternalModules/pug-php/pug/src/Jade/Parser/ExtensionsHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,8 +43,8 @@
 block discarded – undo
43 43
             $extensions[] = $extension;
44 44
         }
45 45
         foreach ($extensions as $extension) {
46
-            if (file_exists($path . $extension)) {
47
-                return realpath($path . $extension);
46
+            if (file_exists($path.$extension)) {
47
+                return realpath($path.$extension);
48 48
             }
49 49
         }
50 50
     }
Please login to merge, or discard this patch.
dist/jate/modules/ExternalModules/pug-php/pug/src/Jade/Parser.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
         $path = ($isAbsolutePath
74 74
             ? rtrim($this->options['basedir'], '/\\')
75 75
             : dirname($this->filename)
76
-        ) . DIRECTORY_SEPARATOR . $path;
76
+        ).DIRECTORY_SEPARATOR.$path;
77 77
         $extensions = new ExtensionsHelper($this->extension);
78 78
 
79 79
         return $extensions->findValidTemplatePath($path, '');
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
             try {
186 186
                 $ast = $parser->parse();
187 187
             } catch (\Exception $e) {
188
-                throw new ParserException($parser->getFilename() . ' (' . $block->line . ') : ' . $e->getMessage(), 23, $e);
188
+                throw new ParserException($parser->getFilename().' ('.$block->line.') : '.$e->getMessage(), 23, $e);
189 189
             }
190 190
             $this->context();
191 191
 
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
         $lineNumber = $this->line();
209 209
         $lines = explode("\n", $this->input);
210 210
         $lineString = isset($lines[$lineNumber]) ? $lines[$lineNumber] : '';
211
-        throw new \ErrorException("\n" . sprintf('Expected %s, but got %s in %dth line : %s', $type, $this->peekType(), $lineNumber, $lineString) . "\n", 24);
211
+        throw new \ErrorException("\n".sprintf('Expected %s, but got %s in %dth line : %s', $type, $this->peekType(), $lineNumber, $lineString)."\n", 24);
212 212
     }
213 213
 
214 214
     protected function accept($type)
@@ -223,7 +223,7 @@  discard block
 block discarded – undo
223 223
         $_types = array('tag', 'mixin', 'block', 'case', 'when', 'default', 'extends', 'include', 'doctype', 'filter', 'comment', 'text', 'each', 'customKeyword', 'code', 'call', 'interpolation');
224 224
 
225 225
         if (in_array($this->peekType(), $_types)) {
226
-            $_method = 'parse' . ucfirst($this->peekType());
226
+            $_method = 'parse'.ucfirst($this->peekType());
227 227
 
228 228
             return $this->$_method();
229 229
         }
@@ -245,7 +245,7 @@  discard block
 block discarded – undo
245 245
                 return $this->parseExpression();
246 246
 
247 247
             default:
248
-                throw new \ErrorException($this->filename . ' (' . $this->line() . ') : Unexpected token "' . $this->peekType() . '"', 25);
248
+                throw new \ErrorException($this->filename.' ('.$this->line().') : Unexpected token "'.$this->peekType().'"', 25);
249 249
         }
250 250
     }
251 251
 
@@ -455,7 +455,7 @@  discard block
 block discarded – undo
455 455
         try {
456 456
             $ast = $parser->parse();
457 457
         } catch (\Exception $e) {
458
-            throw new \ErrorException($path . ' (' . $parser->lexer->lineno . ') : ' . $e->getMessage(), 27);
458
+            throw new \ErrorException($path.' ('.$parser->lexer->lineno.') : '.$e->getMessage(), 27);
459 459
         }
460 460
         $this->context();
461 461
         $ast->filename = $path;
@@ -536,7 +536,7 @@  discard block
 block discarded – undo
536 536
                     break;
537 537
 
538 538
                 default:
539
-                    $this->parseInlineTags($block, $indent . $this->advance()->value);
539
+                    $this->parseInlineTags($block, $indent.$this->advance()->value);
540 540
             }
541 541
         }
542 542
 
@@ -656,7 +656,7 @@  discard block
 block discarded – undo
656 656
                     $peek = $this->peek();
657 657
                     $escaped = isset($peek->escaped, $peek->escaped[$type]) && $peek->escaped[$type];
658 658
                     $value = $escaped || !isset($peek->attributes, $peek->attributes[$type])
659
-                        ? "'" . $token->value . "'"
659
+                        ? "'".$token->value."'"
660 660
                         : $peek->attributes[$type];
661 661
                     $tag->setAttribute($token->type, $value, $escaped);
662 662
                     unset($peek->attributes[$type]);
@@ -664,7 +664,7 @@  discard block
 block discarded – undo
664 664
 
665 665
                 case 'class':
666 666
                     $token = $this->advance();
667
-                    $tag->setAttribute($token->type, "'" . $token->value . "'");
667
+                    $tag->setAttribute($token->type, "'".$token->value."'");
668 668
                     continue;
669 669
 
670 670
                 case 'attributes':
Please login to merge, or discard this patch.
dist/jate/modules/ExternalModules/pug-php/pug/src/Jade/Lexer/Attributes.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
     {
57 57
         $quote = $match[1];
58 58
 
59
-        return str_replace('\\#{', '#{', preg_replace_callback('/(?<!\\\\)#{([^}]+)}/', function ($match) use ($quote) {
60
-            return $quote . ' . ' . CommonUtils::addDollarIfNeeded(preg_replace_callback(
59
+        return str_replace('\\#{', '#{', preg_replace_callback('/(?<!\\\\)#{([^}]+)}/', function($match) use ($quote) {
60
+            return $quote.' . '.CommonUtils::addDollarIfNeeded(preg_replace_callback(
61 61
                     '/(?<![a-zA-Z0-9_\$])(\$?[a-zA-Z_][a-zA-Z0-9_]*)\.([a-zA-Z_][a-zA-Z0-9_]*)(?![a-zA-Z0-9_])/',
62
-                    function ($match) {
62
+                    function($match) {
63 63
                         return CommonUtils::getGetter($match[1], $match[2]);
64 64
                     },
65 65
                     $match[1]
66
-                )) . ' . ' . $quote;
66
+                )).' . '.$quote;
67 67
         }, $match[0]));
68 68
     }
69 69
 
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
 
165 165
     protected function getParseFunction(&$key, &$val, &$quote, $states, &$escapedAttribute, &$previousChar, &$previousNonBlankChar, $parser)
166 166
     {
167
-        return function ($char, $nextChar = '') use (&$key, &$val, &$quote, $states, &$escapedAttribute, &$previousChar, &$previousNonBlankChar, $parser) {
167
+        return function($char, $nextChar = '') use (&$key, &$val, &$quote, $states, &$escapedAttribute, &$previousChar, &$previousNonBlankChar, $parser) {
168 168
             $parser->parseChar($char, $nextChar, $key, $val, $quote, $states, $escapedAttribute, $previousChar, $previousNonBlankChar);
169 169
             $previousChar = $char;
170 170
             if (trim($char) !== '') {
Please login to merge, or discard this patch.
jate/modules/ExternalModules/pug-php/pug/src/Jade/Lexer/InputHandler.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
 
64 64
     protected function testIndent($indent)
65 65
     {
66
-        if (!preg_match('/^' . $indent . '/', substr($this->input, 1), $matches)) {
66
+        if (!preg_match('/^'.$indent.'/', substr($this->input, 1), $matches)) {
67 67
             return;
68 68
         }
69 69
 
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
         }
73 73
 
74 74
         return array(
75
-            "\n" . $matches[0],
75
+            "\n".$matches[0],
76 76
             $matches[0],
77 77
         );
78 78
     }
Please login to merge, or discard this patch.
dist/jate/modules/ExternalModules/pug-php/pug/src/Jade/Lexer/Scanner.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
     protected function scanComment()
28 28
     {
29 29
         $indent = count($this->indentStack) ? $this->indentStack[0] : 0;
30
-        if (preg_match('/^ *\/\/(-)?([^\n]*(\n+[ \t]{' . ($indent + 1) . ',}[^\n]*)*)/', $this->input, $matches)) {
30
+        if (preg_match('/^ *\/\/(-)?([^\n]*(\n+[ \t]{'.($indent + 1).',}[^\n]*)*)/', $this->input, $matches)) {
31 31
             $this->consume($matches[0]);
32 32
             $value = isset($matches[2]) ? $matches[2] : '';
33 33
             if (isset($matches[3])) {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
         if (preg_match('/^(\$?\w+) += *([^;\n]+|\'[^\']+\'|"[^"]+")( *;? *)/', $this->input, $matches)) {
138 138
             $this->consume($matches[0]);
139 139
 
140
-            return $this->token('code', (substr($matches[1], 0, 1) === '$' ? '' : '$') . $matches[1] . '=' . $matches[2]);
140
+            return $this->token('code', (substr($matches[1], 0, 1) === '$' ? '' : '$').$matches[1].'='.$matches[2]);
141 141
         }
142 142
     }
143 143
 
Please login to merge, or discard this patch.
dist/jate/modules/ExternalModules/pug-php/pug/src/Jade/Jade.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
     public function __construct(array $options = array())
66 66
     {
67 67
         if (is_null($this->options['stream'])) {
68
-            $this->options['stream'] = $this->streamName . '.stream';
68
+            $this->options['stream'] = $this->streamName.'.stream';
69 69
         }
70 70
         $this->options = array_merge($this->options, $options);
71 71
     }
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     {
82 82
         return extension_loaded($extension) &&
83 83
             false === strpos(
84
-                ini_get($extension . '.executor.include.whitelist'),
84
+                ini_get($extension.'.executor.include.whitelist'),
85 85
                 $this->options['stream']
86 86
             );
87 87
     }
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
         if ($name) {
112 112
             if (!isset($requirements[$name])) {
113
-                throw new \InvalidArgumentException($name . ' is not in the requirements list (' . implode(', ', array_keys($requirements)) . ')', 19);
113
+                throw new \InvalidArgumentException($name.' is not in the requirements list ('.implode(', ', array_keys($requirements)).')', 19);
114 114
             }
115 115
 
116 116
             return $requirements[$name];
@@ -220,8 +220,8 @@  discard block
 block discarded – undo
220 220
         $compiler = new Compiler($this->options, $this->filters, $parser->getFilename());
221 221
         $php = $compiler->compile($parser->parse());
222 222
         if (version_compare(PHP_VERSION, '7.0.0') < 0) {
223
-            $php = preg_replace_callback('/(' . preg_quote('\\Jade\\Compiler::getPropertyFromAnything', '/') . '\\(((?>[^()]+)|(?-2))*\\))[ \t]*(\\(((?>[^()]+)|(?-2))*\\))/', function ($match) {
224
-                return 'call_user_func(' . $match[1] . ', ' . $match[4] . ')';
223
+            $php = preg_replace_callback('/('.preg_quote('\\Jade\\Compiler::getPropertyFromAnything', '/').'\\(((?>[^()]+)|(?-2))*\\))[ \t]*(\\(((?>[^()]+)|(?-2))*\\))/', function($match) {
224
+                return 'call_user_func('.$match[1].', '.$match[4].')';
225 225
             }, $php);
226 226
         }
227 227
         $postRender = $this->getOption('postRender');
@@ -273,14 +273,14 @@  discard block
 block discarded – undo
273 273
     public function stream($input)
274 274
     {
275 275
         if ($this->whiteListNeeded('suhosin')) {
276
-            throw new \ErrorException('To run Pug.php on the fly, add "' . $this->options['stream'] . '" to the "suhosin.executor.include.whitelist" settings in your php.ini file.', 4);
276
+            throw new \ErrorException('To run Pug.php on the fly, add "'.$this->options['stream'].'" to the "suhosin.executor.include.whitelist" settings in your php.ini file.', 4);
277 277
         }
278 278
 
279 279
         if (!in_array($this->options['stream'], stream_get_wrappers())) {
280 280
             stream_wrapper_register($this->options['stream'], 'Jade\Stream\Template');
281 281
         }
282 282
 
283
-        return $this->options['stream'] . '://data;' . $input;
283
+        return $this->options['stream'].'://data;'.$input;
284 284
     }
285 285
 
286 286
     /**
Please login to merge, or discard this patch.
ExternalModules/pug-php/pug/src/Jade/Compiler/AttributesCompiler.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -11,19 +11,19 @@  discard block
 block discarded – undo
11 11
         }
12 12
 
13 13
         return is_null($valueCheck)
14
-            ? ' ' . $key . '=' . $this->quote . $value . $this->quote
14
+            ? ' '.$key.'='.$this->quote.$value.$this->quote
15 15
             : $this->createCode('if (true === ($__value = %1$s)) { ', $valueCheck)
16 16
                 . $this->getBooleanAttributeDisplayCode($key)
17 17
                 . $this->createCode('} else if (\\Jade\\Compiler::isDisplayable($__value)) { ')
18
-                . ' ' . $key . '=' . $this->quote . $value . $this->quote
18
+                . ' '.$key.'='.$this->quote.$value.$this->quote
19 19
                 . $this->createCode('}');
20 20
     }
21 21
 
22 22
     protected function getBooleanAttributeDisplayCode($key)
23 23
     {
24
-        return ' ' . $key . ($this->terse
24
+        return ' '.$key.($this->terse
25 25
             ? ''
26
-            : '=' . $this->quote . $key . $this->quote
26
+            : '='.$this->quote.$key.$this->quote
27 27
         );
28 28
     }
29 29
 
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
                 $statements = $this->createStatements($value);
46 46
                 $classes[] = $statements[0][0];
47 47
             }
48
-            $addClasses = '" " . implode(" ", array(' . implode(', ', $classes) . '))';
48
+            $addClasses = '" " . implode(" ", array('.implode(', ', $classes).'))';
49 49
             $classes = array();
50 50
             $classesCheck = array();
51 51
         }
@@ -53,25 +53,25 @@  discard block
 block discarded – undo
53 53
         $statements = $this->createStatements($value);
54 54
 
55 55
         return $this->createCode(
56
-            '$__attributes = ' . $this->getValueStatement($statements) . ';' .
57
-            'if (is_array($__attributes)) { ' .
58
-                '$__attributes["class"] = trim(' .
59
-                    '$__classes = (empty($__classes) ? "" : $__classes . " ") . ' .
60
-                    '(isset($__attributes["class"]) ? (is_array($__attributes["class"]) ? implode(" ", $__attributes["class"]) : $__attributes["class"]) : "") . ' .
61
-                    $addClasses .
62
-                '); ' .
63
-                'if (empty($__attributes["class"])) { ' .
64
-                    'unset($__attributes["class"]); ' .
65
-                '} ' .
66
-            '} ' .
67
-            '\\Jade\\Compiler::displayAttributes($__attributes, ' . var_export($this->quote, true) . ', ' . var_export($this->terse, true) . ');');
56
+            '$__attributes = '.$this->getValueStatement($statements).';'.
57
+            'if (is_array($__attributes)) { '.
58
+                '$__attributes["class"] = trim('.
59
+                    '$__classes = (empty($__classes) ? "" : $__classes . " ") . '.
60
+                    '(isset($__attributes["class"]) ? (is_array($__attributes["class"]) ? implode(" ", $__attributes["class"]) : $__attributes["class"]) : "") . '.
61
+                    $addClasses.
62
+                '); '.
63
+                'if (empty($__attributes["class"])) { '.
64
+                    'unset($__attributes["class"]); '.
65
+                '} '.
66
+            '} '.
67
+            '\\Jade\\Compiler::displayAttributes($__attributes, '.var_export($this->quote, true).', '.var_export($this->terse, true).');');
68 68
     }
69 69
 
70 70
     protected function getClassAttribute($value, &$classesCheck)
71 71
     {
72 72
         $statements = $this->createStatements($value);
73 73
         $value = is_array($statements[0]) ? $statements[0][0] : $statements[0];
74
-        $classesCheck[] = '(is_array($_a = ' . $value . ') ? implode(" ", $_a) : $_a)';
74
+        $classesCheck[] = '(is_array($_a = '.$value.') ? implode(" ", $_a) : $_a)';
75 75
 
76 76
         return $this->keepNullAttributes ? '' : 'null';
77 77
     }
@@ -154,11 +154,11 @@  discard block
 block discarded – undo
154 154
     protected function getClassesCode(&$classes, &$classesCheck)
155 155
     {
156 156
         return trim($this->createCode(
157
-            '$__classes = implode(" ", ' .
158
-                'array_unique(explode(" ", (empty($__classes) ? "" : $__classes) . ' .
159
-                    var_export(implode(' ', $classes), true) . ' . ' .
160
-                    'implode(" ", array(' . implode(', ', $classesCheck) . ')) ' .
161
-                ')) ' .
157
+            '$__classes = implode(" ", '.
158
+                'array_unique(explode(" ", (empty($__classes) ? "" : $__classes) . '.
159
+                    var_export(implode(' ', $classes), true).' . '.
160
+                    'implode(" ", array('.implode(', ', $classesCheck).')) '.
161
+                ')) '.
162 162
             ');'
163 163
         ));
164 164
     }
@@ -166,12 +166,12 @@  discard block
 block discarded – undo
166 166
     protected function getClassesDisplayCode()
167 167
     {
168 168
         return trim($this->createCode(
169
-            'if (!empty($__classes)) { ' .
170
-                '?> ' . (isset($this->options['classAttribute'])
169
+            'if (!empty($__classes)) { '.
170
+                '?> '.(isset($this->options['classAttribute'])
171 171
                     ? $this->options['classAttribute']
172 172
                     : 'class'
173
-                ) . '=' . $this->quote . '<?php echo $__classes; ?>' . $this->quote . '<?php ' .
174
-            '} ' .
173
+                ).'='.$this->quote.'<?php echo $__classes; ?>'.$this->quote.'<?php '.
174
+            '} '.
175 175
             'unset($__classes); '
176 176
         ));
177 177
     }
Please login to merge, or discard this patch.