| @@ -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(); | 
| @@ -87,7 +87,7 @@ | ||
| 87 | 87 | // Only bust the cache if it's not certain excluded element types | 
| 88 | 88 |                  if (self::$plugin->cache->shouldBustCache($element)) { | 
| 89 | 89 | Craft::debug( | 
| 90 | - 'Cache busted due to saving: ' . $element::class . ' - ' . $element->title, | |
| 90 | + 'Cache busted due to saving: '.$element::class.' - '.$element->title, | |
| 91 | 91 | __METHOD__ | 
| 92 | 92 | ); | 
| 93 | 93 | FastcgiCacheBust::$plugin->cache->clearAll(); |