diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:35:33 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:59 +0200 |
commit | af0a6961b1ae867e354ecf71d61708af9618c44f (patch) | |
tree | 6f5805dc9d1055d9be985f69d0b223a8daa15944 /apps/user_ldap/lib/access.php | |
parent | 387019a212224ffbd4300576b9c28e61d5e021a6 (diff) | |
download | nextcloud-server-af0a6961b1ae867e354ecf71d61708af9618c44f.tar.gz nextcloud-server-af0a6961b1ae867e354ecf71d61708af9618c44f.zip |
Move Connection to PSR-4
Diffstat (limited to 'apps/user_ldap/lib/access.php')
-rw-r--r-- | apps/user_ldap/lib/access.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/user_ldap/lib/access.php b/apps/user_ldap/lib/access.php index 355ce7c681e..025f5710862 100644 --- a/apps/user_ldap/lib/access.php +++ b/apps/user_ldap/lib/access.php @@ -37,6 +37,7 @@ namespace OCA\user_ldap\lib; +use OCA\User_LDAP\Connection; use OCA\User_LDAP\ILDAPWrapper; use OCA\User_LDAP\LDAPUtility; use OCA\User_LDAP\User\IUserTools; @@ -50,7 +51,7 @@ use OCA\User_LDAP\Mapping\AbstractMapping; */ class Access extends LDAPUtility implements IUserTools { /** - * @var \OCA\user_ldap\lib\Connection + * @var \OCA\User_LDAP\Connection */ public $connection; public $userManager; @@ -135,7 +136,7 @@ class Access extends LDAPUtility implements IUserTools { /** * returns the Connection instance - * @return \OCA\user_ldap\lib\Connection + * @return \OCA\User_LDAP\Connection */ public function getConnection() { return $this->connection; |