Fix the User_LDAP app
This commit is contained in:
parent
a2668b11e5
commit
01cf85e4e5
|
@ -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 */
|
||||||
|
|
|
@ -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 */
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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.
|
||||||
|
|
|
@ -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;
|
||||||
|
|
|
@ -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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue