diff options
Diffstat (limited to 'lib/private/Repair/ClearFrontendCaches.php')
-rw-r--r-- | lib/private/Repair/ClearFrontendCaches.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/private/Repair/ClearFrontendCaches.php b/lib/private/Repair/ClearFrontendCaches.php index 0a92aa8d201..22add525adb 100644 --- a/lib/private/Repair/ClearFrontendCaches.php +++ b/lib/private/Repair/ClearFrontendCaches.php @@ -23,11 +23,11 @@ namespace OC\Repair; -use OC\Template\JSCombiner; -use OC\Template\SCSSCacher; use OCP\ICacheFactory; use OCP\Migration\IOutput; use OCP\Migration\IRepairStep; +use OC\Template\JSCombiner; +use OC\Template\SCSSCacher; class ClearFrontendCaches implements IRepairStep { @@ -44,8 +44,8 @@ class ClearFrontendCaches implements IRepairStep { SCSSCacher $SCSSCacher, JSCombiner $JSCombiner) { $this->cacheFactory = $cacheFactory; - $this->scssCacher = $SCSSCacher; - $this->jsCombiner = $JSCombiner; + $this->scssCacher = $SCSSCacher; + $this->jsCombiner = $JSCombiner; } public function getName() { |