Skip to content
Snippets Groups Projects
Commit 0b630a37 authored by Robin Appelman's avatar Robin Appelman
Browse files

Fix type hinting for app manager

parent 230e517f
Branches
No related tags found
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment