summaryrefslogtreecommitdiffstats
path: root/core/Controller
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-05-10 09:42:40 +0200
committerJoas Schilling <coding@schilljs.com>2017-05-10 09:42:40 +0200
commitd418ea550ba3e15b4ce1dbe1d0491c158f988b38 (patch)
tree449edc68b369a15f5c455eb5108235631feb8fce /core/Controller
parent9c8fe8200019c0e6345cd8e73bb2d81742781839 (diff)
downloadnextcloud-server-d418ea550ba3e15b4ce1dbe1d0491c158f988b38.tar.gz
nextcloud-server-d418ea550ba3e15b4ce1dbe1d0491c158f988b38.zip
Automatic injection for CssController
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/CssController.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/core/Controller/CssController.php b/core/Controller/CssController.php
index 57197e9999e..3cf477290fe 100644
--- a/core/Controller/CssController.php
+++ b/core/Controller/CssController.php
@@ -21,6 +21,7 @@
namespace OC\Core\Controller;
+use OC\Files\AppData\Factory;
use OCP\AppFramework\Controller;
use OCP\AppFramework\Http;
use OCP\AppFramework\Http\NotFoundResponse;
@@ -43,13 +44,13 @@ class CssController extends Controller {
/**
* @param string $appName
* @param IRequest $request
- * @param IAppData $appData
+ * @param Factory $appDataFactory
* @param ITimeFactory $timeFactory
*/
- public function __construct($appName, IRequest $request, IAppData $appData, ITimeFactory $timeFactory) {
+ public function __construct($appName, IRequest $request, Factory $appDataFactory, ITimeFactory $timeFactory) {
parent::__construct($appName, $request);
- $this->appData = $appData;
+ $this->appData = $appDataFactory->get('css');
$this->timeFactory = $timeFactory;
}