Passed
Branch v5 (7e0eb9)
by Andrew
07:15
created
Category
ecs.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,7 @@
 block discarded – undo
5 5
 
6 6
 return static function(ECSConfig $ecsConfig): void {
7 7
     $ecsConfig->paths([
8
-        __DIR__ . '/src',
8
+        __DIR__.'/src',
9 9
         __FILE__,
10 10
     ]);
11 11
     $ecsConfig->parallel();
Please login to merge, or discard this patch.
src/twigextensions/MinifyNode.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -45,16 +45,16 @@
 block discarded – undo
45 45
 
46 46
         if ($html) {
47 47
             $compiler
48
-                ->write("echo " . Minify::class . "::\$plugin->minify->htmlMin(\$_compiledBody);\n");
48
+                ->write("echo ".Minify::class."::\$plugin->minify->htmlMin(\$_compiledBody);\n");
49 49
         } elseif ($css) {
50 50
             $compiler
51
-                ->write("echo " . Minify::class . "::\$plugin->minify->cssMin(\$_compiledBody);\n");
51
+                ->write("echo ".Minify::class."::\$plugin->minify->cssMin(\$_compiledBody);\n");
52 52
         } elseif ($js) {
53 53
             $compiler
54
-                ->write("echo " . Minify::class . "::\$plugin->minify->jsMin(\$_compiledBody);\n");
54
+                ->write("echo ".Minify::class."::\$plugin->minify->jsMin(\$_compiledBody);\n");
55 55
         } else {
56 56
             $compiler
57
-                ->write("echo " . Minify::class . "::\$plugin->minify->minify(\$_compiledBody);\n");
57
+                ->write("echo ".Minify::class."::\$plugin->minify->minify(\$_compiledBody);\n");
58 58
         }
59 59
     }
60 60
 }
Please login to merge, or discard this patch.