diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-14 13:00:20 +0200 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2020-10-14 15:40:12 +0200 |
commit | f464ef050bd329f8cac3bb20c932e2021ab49d37 (patch) | |
tree | dcdb02e6b8aed1f13d7549e0a82b33c12a787a4c /lib/base.php | |
parent | f9f20b63f4d98bd316f03b35ca3c3222aa333d49 (diff) | |
download | nextcloud-server-f464ef050bd329f8cac3bb20c932e2021ab49d37.tar.gz nextcloud-server-f464ef050bd329f8cac3bb20c932e2021ab49d37.zip |
Fix type errors detected by Psalm
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/base.php b/lib/base.php index bb9b8963419..a27e8ffc920 100644 --- a/lib/base.php +++ b/lib/base.php @@ -859,6 +859,7 @@ class OC { } private static function registerAppRestrictionsHooks() { + /** @var \OC\Group\Manager $groupManager */ $groupManager = self::$server->query(\OCP\IGroupManager::class); $groupManager->listen('\OC\Group', 'postDelete', function (\OCP\IGroup $group) { $appManager = self::$server->getAppManager(); |