@@ -49,7 +49,7 @@ |
||
49 | 49 | Craft::info( |
50 | 50 | Craft::t( |
51 | 51 | 'fastcgi-cache-bust', |
52 | - 'FastCGI Cache busted: `' . $cacheDir |
|
52 | + 'FastCGI Cache busted: `'.$cacheDir |
|
53 | 53 | ), |
54 | 54 | __METHOD__ |
55 | 55 | ); |
@@ -5,7 +5,7 @@ |
||
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(); |
@@ -90,7 +90,7 @@ |
||
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(); |