diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:42:57 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:59 +0200 |
commit | c807a26bd843d899614d99ffa7f5d854429eecb4 (patch) | |
tree | daab8b86f986a05f8acfd5868cc2c1a581a88a23 /apps/user_ldap/lib/Wizard.php | |
parent | 02d5b75fb44340e82c2694e99c5cd01a53dab6d9 (diff) | |
download | nextcloud-server-c807a26bd843d899614d99ffa7f5d854429eecb4.tar.gz nextcloud-server-c807a26bd843d899614d99ffa7f5d854429eecb4.zip |
Move Access to PSR-4
Diffstat (limited to 'apps/user_ldap/lib/Wizard.php')
-rw-r--r-- | apps/user_ldap/lib/Wizard.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php index c63bf903d82..f8c82a29701 100644 --- a/apps/user_ldap/lib/Wizard.php +++ b/apps/user_ldap/lib/Wizard.php @@ -32,7 +32,6 @@ namespace OCA\User_LDAP; use OC\ServerNotAvailableException; -use OCA\user_ldap\lib\Access; class Wizard extends LDAPUtility { static protected $l; @@ -59,6 +58,7 @@ class Wizard extends LDAPUtility { * Constructor * @param Configuration $configuration an instance of Configuration * @param ILDAPWrapper $ldap an instance of ILDAPWrapper + * @param Access $access */ public function __construct(Configuration $configuration, ILDAPWrapper $ldap, Access $access) { parent::__construct($ldap); |