Passed
Branch v5 (3c3f67)
by Andrew
26:28 queued 20:19
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/ProfilerNode.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,11 +38,11 @@
 block discarded – undo
38 38
             if (!empty($profileName)) {
39 39
                 $compiler
40 40
                     ->addDebugInfo($this)
41
-                    ->write(TwigProfiler::class . "::\$plugin->profile->begin('" . $profileName . "');\n")
41
+                    ->write(TwigProfiler::class."::\$plugin->profile->begin('".$profileName."');\n")
42 42
                     ->indent()
43 43
                     ->subcompile($this->getNode('body'))
44 44
                     ->outdent()
45
-                    ->write(TwigProfiler::class . "::\$plugin->profile->end('" . $profileName . "');\n");
45
+                    ->write(TwigProfiler::class."::\$plugin->profile->end('".$profileName."');\n");
46 46
             }
47 47
         }
48 48
     }
Please login to merge, or discard this patch.
src/TwigProfiler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@
 block discarded – undo
80 80
                         'View::EVENT_BEFORE_RENDER_TEMPLATE',
81 81
                         __METHOD__
82 82
                     );
83
-                    self::$renderingTemplate = ' - ' . $event->template;
83
+                    self::$renderingTemplate = ' - '.$event->template;
84 84
                 }
85 85
             );
86 86
         }
Please login to merge, or discard this patch.