Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/lib/capabilities.php')
-rw-r--r--apps/theming/lib/capabilities.php7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/theming/lib/capabilities.php b/apps/theming/lib/capabilities.php
index 458da3be203..5c71d465fe0 100644
--- a/apps/theming/lib/capabilities.php
+++ b/apps/theming/lib/capabilities.php
@@ -24,7 +24,6 @@
namespace OCA\Theming;
use OCP\Capabilities\ICapability;
-use OCP\IURLGenerator;
/**
* Class Capabilities
@@ -33,13 +32,13 @@ use OCP\IURLGenerator;
*/
class Capabilities implements ICapability {
- /** @var ThemingDefaults */
+ /** @var Template */
protected $theming;
/**
- * @param ThemingDefaults $theming
+ * @param Template $theming
*/
- public function __construct(ThemingDefaults $theming) {
+ public function __construct(Template $theming) {
$this->theming = $theming;
}