diff options
author | Seungmin Kim <8457324+ehfd@users.noreply.github.com> | 2024-12-15 01:14:56 +0900 |
---|---|---|
committer | Seungmin Kim <8457324+ehfd@users.noreply.github.com> | 2024-12-17 09:36:19 +0900 |
commit | 09154c334c3d14e5fcdba109202af0fc4a746a39 (patch) | |
tree | a741e3681e1799d38e9b744093351a4db348bdac /core | |
parent | ab9ac5046bfdad5220361936af0bc6c10fc1ef17 (diff) | |
download | nextcloud-server-09154c334c3d14e5fcdba109202af0fc4a746a39.tar.gz nextcloud-server-09154c334c3d14e5fcdba109202af0fc4a746a39.zip |
fix(occ): Modify IAppManager
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: Seungmin Kim <8457324+ehfd@users.noreply.github.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Integrity/CheckApp.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index 403d36b6c87..c48e699b7a4 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -25,7 +25,7 @@ use Symfony\Component\Console\Output\OutputInterface; class CheckApp extends Base { public function __construct( private Checker $checker, - private ?IAppManager $appManager, + private IAppManager $appManager, private AppLocator $appLocator, private FileAccessHelper $fileAccessHelper, ) { |