summaryrefslogtreecommitdiffstats
path: root/apps/user_ldap
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@owncloud.com>2016-05-12 16:09:00 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2016-05-25 16:04:57 +0200
commitd16a97a273feed9fe1f52df069b92a8278d649db (patch)
treeacf670c5e4e7fff844cb974f22871047d7d5ffc7 /apps/user_ldap
parentd4e828f39e302a7c69de28c5f2d9b77969f50230 (diff)
downloadnextcloud-server-d16a97a273feed9fe1f52df069b92a8278d649db.tar.gz
nextcloud-server-d16a97a273feed9fe1f52df069b92a8278d649db.zip
lib/user
Diffstat (limited to 'apps/user_ldap')
-rw-r--r--apps/user_ldap/lib/access.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php
index 814de3f4092..092d22a428e 100644
--- a/apps/user_ldap/lib/access.php
+++ b/apps/user_ldap/lib/access.php
@@ -38,6 +38,7 @@
namespace OCA\user_ldap\lib;
use OCA\User_LDAP\User\IUserTools;
+use OCA\User_LDAP\User\Manager;
use OCA\User_LDAP\User\OfflineUser;
use OCA\User_LDAP\Mapping\AbstractMapping;
@@ -76,7 +77,7 @@ class Access extends LDAPUtility implements IUserTools {
protected $groupMapper;
public function __construct(Connection $connection, ILDAPWrapper $ldap,
- user\Manager $userManager) {
+ Manager $userManager) {
parent::__construct($ldap);
$this->connection = $connection;
$this->userManager = $userManager;