diff options
author | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-12 16:37:49 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2016-05-25 16:04:59 +0200 |
commit | aa7b6003834ec26f777443c9b28d808f098c2e29 (patch) | |
tree | 16c32dfa56dd03e2bfb9ca092ef675d13466e29e /apps/user_ldap/lib | |
parent | af0a6961b1ae867e354ecf71d61708af9618c44f (diff) | |
download | nextcloud-server-aa7b6003834ec26f777443c9b28d808f098c2e29.tar.gz nextcloud-server-aa7b6003834ec26f777443c9b28d808f098c2e29.zip |
Move Configuration to PSR-4
Diffstat (limited to 'apps/user_ldap/lib')
-rw-r--r-- | apps/user_ldap/lib/Command/CreateEmptyConfig.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/Command/SetConfig.php | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/Command/ShowConfig.php | 4 | ||||
-rw-r--r-- | apps/user_ldap/lib/Configuration.php (renamed from apps/user_ldap/lib/configuration.php) | 2 | ||||
-rw-r--r-- | apps/user_ldap/lib/Wizard.php | 1 |
5 files changed, 5 insertions, 6 deletions
diff --git a/apps/user_ldap/lib/Command/CreateEmptyConfig.php b/apps/user_ldap/lib/Command/CreateEmptyConfig.php index 779dbbc6fd5..c735e51f491 100644 --- a/apps/user_ldap/lib/Command/CreateEmptyConfig.php +++ b/apps/user_ldap/lib/Command/CreateEmptyConfig.php @@ -27,7 +27,7 @@ use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use \OCA\User_LDAP\Helper; -use \OCA\user_ldap\lib\Configuration; +use \OCA\User_LDAP\Configuration; class CreateEmptyConfig extends Command { /** @var \OCA\User_LDAP\Helper */ diff --git a/apps/user_ldap/lib/Command/SetConfig.php b/apps/user_ldap/lib/Command/SetConfig.php index d9308c0afd4..d466e1eb769 100644 --- a/apps/user_ldap/lib/Command/SetConfig.php +++ b/apps/user_ldap/lib/Command/SetConfig.php @@ -28,7 +28,7 @@ use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use OCA\User_LDAP\Helper; -use \OCA\user_ldap\lib\Configuration; +use OCA\User_LDAP\Configuration; class SetConfig extends Command { diff --git a/apps/user_ldap/lib/Command/ShowConfig.php b/apps/user_ldap/lib/Command/ShowConfig.php index 91904ca8380..dbd18216f81 100644 --- a/apps/user_ldap/lib/Command/ShowConfig.php +++ b/apps/user_ldap/lib/Command/ShowConfig.php @@ -28,8 +28,8 @@ use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; -use \OCA\User_LDAP\Helper; -use \OCA\user_ldap\lib\Configuration; +use OCA\User_LDAP\Helper; +use OCA\User_LDAP\Configuration; class ShowConfig extends Command { /** @var \OCA\User_LDAP\Helper */ diff --git a/apps/user_ldap/lib/configuration.php b/apps/user_ldap/lib/Configuration.php index 418a2bfc015..476483ecc2f 100644 --- a/apps/user_ldap/lib/configuration.php +++ b/apps/user_ldap/lib/Configuration.php @@ -26,7 +26,7 @@ * */ -namespace OCA\user_ldap\lib; +namespace OCA\User_LDAP; /** * @property int ldapPagingSize holds an integer diff --git a/apps/user_ldap/lib/Wizard.php b/apps/user_ldap/lib/Wizard.php index c565b5bdc43..c63bf903d82 100644 --- a/apps/user_ldap/lib/Wizard.php +++ b/apps/user_ldap/lib/Wizard.php @@ -33,7 +33,6 @@ namespace OCA\User_LDAP; use OC\ServerNotAvailableException; use OCA\user_ldap\lib\Access; -use OCA\user_ldap\lib\Configuration; class Wizard extends LDAPUtility { static protected $l; |