diff options
author | Côme Chilliet <come.chilliet@nextcloud.com> | 2022-03-22 15:15:43 +0100 |
---|---|---|
committer | Côme Chilliet (Rebase PR Action) <come-nc@users.noreply.github.com> | 2022-04-01 12:18:02 +0000 |
commit | a2c030ffea0d64a4bd23331a1b78efa2a9bd112f (patch) | |
tree | e27fd4735ba1f2f31a4b2a73b26002e2b9bf35ff /apps | |
parent | 77bdad84c21f2d836b778a2741eb8e8512ee19eb (diff) | |
download | nextcloud-server-a2c030ffea0d64a4bd23331a1b78efa2a9bd112f.tar.gz nextcloud-server-a2c030ffea0d64a4bd23331a1b78efa2a9bd112f.zip |
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.php | 1 |
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, |