]> source.dussan.org Git - nextcloud-server.git/commitdiff
Fix type hinting for app manager
authorRobin Appelman <icewind@owncloud.com>
Tue, 18 Nov 2014 11:22:13 +0000 (12:22 +0100)
committerRobin Appelman <icewind@owncloud.com>
Tue, 18 Nov 2014 11:22:13 +0000 (12:22 +0100)
lib/private/connector/sabre/appenabledplugin.php

index 73fed948f9bd66b628a0b1a0e6bd6b0df89096b9..61f5170658dc9dc2fcb3b0a5fa19017ecb3b7e27 100644 (file)
@@ -9,7 +9,7 @@
 
 namespace OC\Connector\Sabre;
 
-use OCP\App\IManager;
+use OCP\App\IAppManager;
 use Sabre\DAV\Exception\Forbidden;
 use Sabre\DAV\ServerPlugin;
 
@@ -31,15 +31,15 @@ class AppEnabledPlugin extends ServerPlugin {
        private $app;
 
        /**
-        * @var \OCP\App\IManager
+        * @var \OCP\App\IAppManager
         */
        private $appManager;
 
        /**
         * @param string $app
-        * @param \OCP\App\IManager $appManager
+        * @param \OCP\App\IAppManager $appManager
         */
-       public function __construct($app, IManager $appManager) {
+       public function __construct($app, IAppManager $appManager) {
                $this->app = $app;
                $this->appManager = $appManager;
        }