diff options
author | Julius Haertl <jus@bitgrid.net> | 2017-02-09 17:12:00 +0100 |
---|---|---|
committer | Julius Haertl <jus@bitgrid.net> | 2017-02-16 15:13:39 +0100 |
commit | b2cbe3530daa04451195865afc177bc6bde6c359 (patch) | |
tree | 35a9cd6e708f035c1b34bb6e79e691f5d070f5d3 /apps/theming/lib/Controller | |
parent | 88a0ef7d4a49403c0b803cd8716ae95688490b59 (diff) | |
download | nextcloud-server-b2cbe3530daa04451195865afc177bc6bde6c359.tar.gz nextcloud-server-b2cbe3530daa04451195865afc177bc6bde6c359.zip |
Use ::class in tests and correct import
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/lib/Controller')
-rw-r--r-- | apps/theming/lib/Controller/ThemingController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/theming/lib/Controller/ThemingController.php b/apps/theming/lib/Controller/ThemingController.php index 19999d1362d..2aa79df2464 100644 --- a/apps/theming/lib/Controller/ThemingController.php +++ b/apps/theming/lib/Controller/ThemingController.php @@ -31,9 +31,9 @@ use OCA\Theming\ThemingDefaults; use OCP\AppFramework\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataDownloadResponse; +use OCP\AppFramework\Http\FileDisplayResponse; use OCP\AppFramework\Http\DataResponse; use OCP\AppFramework\Http\NotFoundResponse; -use OCP\AppFramework\Http\FileDisplayResponse; use OCP\AppFramework\Utility\ITimeFactory; use OCP\Files\File; use OCP\Files\IAppData; @@ -266,7 +266,7 @@ class ThemingController extends Controller { * @PublicPage * @NoCSRFRequired * - * @return Http\FileDisplayResponse|NotFoundResponse + * @return FileDisplayResponse|NotFoundResponse */ public function getLogo() { try { |