aboutsummaryrefslogtreecommitdiffstats
path: root/apps/user_ldap/lib
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-04-27 11:21:53 +0200
committerCôme Chilliet <come.chilliet@nextcloud.com>2023-04-27 11:21:53 +0200
commit967955358c2693aafb1e43795b09cf24e460929b (patch)
tree2ca6c3f2b85d81d001e492cb54fe2b04a2e20ec3 /apps/user_ldap/lib
parent802363f0f60eeb9fecaed45051e929458e9eb849 (diff)
downloadnextcloud-server-967955358c2693aafb1e43795b09cf24e460929b.tar.gz
nextcloud-server-967955358c2693aafb1e43795b09cf24e460929b.zip
Add comment about Manager instance not being shared
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r--apps/user_ldap/lib/AccessFactory.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/user_ldap/lib/AccessFactory.php b/apps/user_ldap/lib/AccessFactory.php
index 72797ef1626..693f7e8ba12 100644
--- a/apps/user_ldap/lib/AccessFactory.php
+++ b/apps/user_ldap/lib/AccessFactory.php
@@ -50,6 +50,7 @@ class AccessFactory {
}
public function get(Connection $connection): Access {
+ /* Each Access instance gets its own Manager instance, see OCA\User_LDAP\AppInfo\Application::register() */
return new Access(
$connection,
$this->ldap,