We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec26fdd commit 7eeb2d5Copy full SHA for 7eeb2d5
lib/private/Files/SetupManagerFactory.php
@@ -9,6 +9,7 @@
9
namespace OC\Files;
10
11
use OC\Share20\ShareDisableChecker;
12
+use OCP\App\IAppManager;
13
use OCP\Diagnostics\IEventLogger;
14
use OCP\EventDispatcher\IEventDispatcher;
15
use OCP\Files\Config\IMountProviderCollection;
@@ -36,6 +37,7 @@ public function __construct(
36
37
private LoggerInterface $logger,
38
private IConfig $config,
39
private ShareDisableChecker $shareDisableChecker,
40
+ private IAppManager $appManager,
41
) {
42
$this->setupManager = null;
43
}
@@ -55,6 +57,7 @@ public function create(IMountManager $mountManager): SetupManager {
55
57
$this->logger,
56
58
$this->config,
59
$this->shareDisableChecker,
60
+ $this->appManager,
61
);
62
63
return $this->setupManager;
0 commit comments