Passed
Push — v1 ( 93a691...f8be33 )
by Andrew
07:12 queued 18s
created
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/FastcgiCacheBust.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@
 block discarded – undo
90 90
                 // Only bust the cache if it's not certain excluded element types
91 91
                 if (self::$plugin->cache->shouldBustCache($element)) {
92 92
                     Craft::debug(
93
-                        'Cache busted due to saving: ' . get_class($element) . ' - ' . $element->title,
93
+                        'Cache busted due to saving: '.get_class($element).' - '.$element->title,
94 94
                         __METHOD__
95 95
                     );
96 96
                     FastcgiCacheBust::$plugin->cache->clearAll();
Please login to merge, or discard this patch.