Fix the User_LDAP app

This commit is contained in:
Joas Schilling 2016-09-09 16:52:10 +02:00 committed by Morris Jobke
parent a2668b11e5
commit 01cf85e4e5
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
7 changed files with 12 additions and 17 deletions

View File

@ -25,11 +25,11 @@
namespace OCA\User_LDAP\Command; namespace OCA\User_LDAP\Command;
use OCA\User_LDAP\Configuration;
use OCA\User_LDAP\Helper;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use \OCA\User_LDAP\Helper;
use \OCA\User_LDAP\Configuration;
class CreateEmptyConfig extends Command { class CreateEmptyConfig extends Command {
/** @var \OCA\User_LDAP\Helper */ /** @var \OCA\User_LDAP\Helper */

View File

@ -25,11 +25,12 @@
namespace OCA\User_LDAP\Command; namespace OCA\User_LDAP\Command;
use OCA\User_LDAP\Helper;
use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use \OCA\User_LDAP\Helper;
class DeleteConfig extends Command { class DeleteConfig extends Command {
/** @var \OCA\User_LDAP\Helper */ /** @var \OCA\User_LDAP\Helper */

View File

@ -24,13 +24,13 @@
namespace OCA\User_LDAP\Jobs; namespace OCA\User_LDAP\Jobs;
use \OC\BackgroundJob\TimedJob; use OC\BackgroundJob\TimedJob;
use \OCA\User_LDAP\User_LDAP; use OCA\User_LDAP\Helper;
use \OCA\User_LDAP\User_Proxy; use OCA\User_LDAP\LDAP;
use \OCA\User_LDAP\Helper; use OCA\User_LDAP\Mapping\UserMapping;
use \OCA\User_LDAP\LDAP; use OCA\User_LDAP\User_LDAP;
use \OCA\User_LDAP\User\DeletedUsersIndex; use OCA\User_LDAP\User_Proxy;
use \OCA\User_LDAP\Mapping\UserMapping; use OCA\User_LDAP\User\DeletedUsersIndex;
/** /**
* Class CleanUp * Class CleanUp

View File

@ -22,12 +22,11 @@
namespace OCA\User_LDAP; namespace OCA\User_LDAP;
use OCP\IUserBackend;
use OCP\LDAP\ILDAPProvider; use OCP\LDAP\ILDAPProvider;
use OCP\LDAP\IDeletionFlagSupport; use OCP\LDAP\IDeletionFlagSupport;
use OCP\IServerContainer; use OCP\IServerContainer;
use OCA\User_LDAP\User\DeletedUsersIndex; use OCA\User_LDAP\User\DeletedUsersIndex;
use OCA\User_LDAP\Mapping\UserMapping;
/** /**
* LDAP provider for pulic access to the LDAP backend. * LDAP provider for pulic access to the LDAP backend.

View File

@ -27,7 +27,6 @@
namespace OCA\User_LDAP\Tests; namespace OCA\User_LDAP\Tests;
use OCA\User_LDAP\Access; use OCA\User_LDAP\Access;
use OCA\User_LDAP\Connection;
use OCA\User_LDAP\FilesystemHelper; use OCA\User_LDAP\FilesystemHelper;
use OCA\User_LDAP\ILDAPWrapper; use OCA\User_LDAP\ILDAPWrapper;
use OCA\User_LDAP\LogWrapper; use OCA\User_LDAP\LogWrapper;

View File

@ -29,8 +29,6 @@
namespace OCA\User_LDAP\Tests; namespace OCA\User_LDAP\Tests;
use OCA\User_LDAP\Group_LDAP as GroupLDAP; use OCA\User_LDAP\Group_LDAP as GroupLDAP;
use OCA\User_LDAP\Access;
use OCA\User_LDAP\Connection;
use OCA\User_LDAP\ILDAPWrapper; use OCA\User_LDAP\ILDAPWrapper;
/** /**

View File

@ -32,8 +32,6 @@ use OCA\User_LDAP\FilesystemHelper;
use OCA\User_LDAP\ILDAPWrapper; use OCA\User_LDAP\ILDAPWrapper;
use OCA\User_LDAP\LogWrapper; use OCA\User_LDAP\LogWrapper;
use OCA\User_LDAP\User_LDAP as UserLDAP; use OCA\User_LDAP\User_LDAP as UserLDAP;
use \OCA\User_LDAP\Access;
use \OCA\User_LDAP\Connection;
use OCP\IAvatarManager; use OCP\IAvatarManager;
use OCP\IConfig; use OCP\IConfig;
use OCP\IDBConnection; use OCP\IDBConnection;