diff options
Diffstat (limited to 'apps/theming/lib/Migration/ThemingImages.php')
-rw-r--r-- | apps/theming/lib/Migration/ThemingImages.php | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/apps/theming/lib/Migration/ThemingImages.php b/apps/theming/lib/Migration/ThemingImages.php index 9627697f666..f6f484be8b5 100644 --- a/apps/theming/lib/Migration/ThemingImages.php +++ b/apps/theming/lib/Migration/ThemingImages.php @@ -37,7 +37,7 @@ class ThemingImages implements IRepairStep { private $appData; private $rootFolder; - public function __construct(IAppData $appData, ThemingDefaults $defaults, IRootFolder $rootFolder) { + public function __construct(IAppData $appData, IRootFolder $rootFolder) { $this->appData = $appData; $this->rootFolder = $rootFolder; } @@ -58,21 +58,20 @@ class ThemingImages implements IRepairStep { $file = null; try { $file = $this->rootFolder->get('themedinstancelogo'); - $logo = $folder->newFile("logo"); + $logo = $folder->newFile('logo'); $logo->putContent($file->getContent()); $file->delete(); } catch (NotFoundException $e) { - $output->info("No theming logo image to migrate"); + $output->info('No theming logo image to migrate'); } try { $file = $this->rootFolder->get('themedbackgroundlogo'); - $background = $folder->newFile("background"); + $background = $folder->newFile('background'); $background->putContent($file->getContent()); $file->delete(); } catch (NotFoundException $e) { - $output->info("No theming background image to migrate"); + $output->info('No theming background image to migrate'); } - } -}
\ No newline at end of file +} |