diff options
Diffstat (limited to 'core/Controller/CssController.php')
-rw-r--r-- | core/Controller/CssController.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/core/Controller/CssController.php b/core/Controller/CssController.php index 792be71f9e1..7aec5850aea 100644 --- a/core/Controller/CssController.php +++ b/core/Controller/CssController.php @@ -45,16 +45,16 @@ use OCP\IRequest; class CssController extends Controller { protected IAppData $appData; - protected ITimeFactory $timeFactory; - public function __construct(string $appName, - IRequest $request, - Factory $appDataFactory, - ITimeFactory $timeFactory) { + public function __construct( + string $appName, + IRequest $request, + Factory $appDataFactory, + protected ITimeFactory $timeFactory, + ) { parent::__construct($appName, $request); $this->appData = $appDataFactory->get('css'); - $this->timeFactory = $timeFactory; } /** |