Skip to content

Commit 7eeb2d5

Browse files
committed
fixup! fix: Replace OC_App::loadApp calls by IAppManager
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
1 parent ec26fdd commit 7eeb2d5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

lib/private/Files/SetupManagerFactory.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
namespace OC\Files;
1010

1111
use OC\Share20\ShareDisableChecker;
12+
use OCP\App\IAppManager;
1213
use OCP\Diagnostics\IEventLogger;
1314
use OCP\EventDispatcher\IEventDispatcher;
1415
use OCP\Files\Config\IMountProviderCollection;
@@ -36,6 +37,7 @@ public function __construct(
3637
private LoggerInterface $logger,
3738
private IConfig $config,
3839
private ShareDisableChecker $shareDisableChecker,
40+
private IAppManager $appManager,
3941
) {
4042
$this->setupManager = null;
4143
}
@@ -55,6 +57,7 @@ public function create(IMountManager $mountManager): SetupManager {
5557
$this->logger,
5658
$this->config,
5759
$this->shareDisableChecker,
60+
$this->appManager,
5861
);
5962
}
6063
return $this->setupManager;

0 commit comments

Comments
 (0)