summaryrefslogtreecommitdiffstats
path: root/apps/theming/lib
diff options
context:
space:
mode:
authorJulius Haertl <jus@bitgrid.net>2017-02-09 12:08:42 +0100
committerJulius Haertl <jus@bitgrid.net>2017-02-16 15:13:38 +0100
commit88a0ef7d4a49403c0b803cd8716ae95688490b59 (patch)
tree1dd06061d4865b52d6068b5ea8db6ec9ebec2ec0 /apps/theming/lib
parent345d1f12914f2635741886b9e4b990bbbbdd2973 (diff)
downloadnextcloud-server-88a0ef7d4a49403c0b803cd8716ae95688490b59.tar.gz
nextcloud-server-88a0ef7d4a49403c0b803cd8716ae95688490b59.zip
Add tests for theming migration step
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib')
-rw-r--r--apps/theming/lib/Migration/ThemingImages.php13
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
+}