Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2022-03-22 17:15:43 +0300
committerCôme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com>2022-04-01 15:18:02 +0300
commita2c030ffea0d64a4bd23331a1b78efa2a9bd112f (patch)
treee27fd4735ba1f2f31a4b2a73b26002e2b9bf35ff /apps
parent77bdad84c21f2d836b778a2741eb8e8512ee19eb (diff)
Add type information to fix psalm error
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps')
-rw-r--r--apps/user_ldap/lib/GroupPluginManager.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/GroupPluginManager.php b/apps/user_ldap/lib/GroupPluginManager.php
index a25665e4691..8403ad4e4be 100644
--- a/apps/user_ldap/lib/GroupPluginManager.php
+++ b/apps/user_ldap/lib/GroupPluginManager.php
@@ -28,6 +28,7 @@ use OCP\GroupInterface;
class GroupPluginManager {
private int $respondToActions = 0;
+ /** @var array<int, ?ILDAPGroupPlugin> */
private array $which = [
GroupInterface::CREATE_GROUP => null,
GroupInterface::DELETE_GROUP => null,