Move Command namespace to PSR-4
This commit is contained in:
parent
9d61acb27d
commit
4ac283ecd3
|
@ -40,15 +40,15 @@ $deletedUsersIndex = new DeletedUsersIndex(
|
|||
$ocConfig, $dbConnection, $userMapping
|
||||
);
|
||||
|
||||
$application->add(new OCA\user_ldap\Command\ShowConfig($helper));
|
||||
$application->add(new OCA\user_ldap\Command\SetConfig());
|
||||
$application->add(new OCA\user_ldap\Command\TestConfig());
|
||||
$application->add(new OCA\user_ldap\Command\CreateEmptyConfig($helper));
|
||||
$application->add(new OCA\user_ldap\Command\DeleteConfig($helper));
|
||||
$application->add(new OCA\user_ldap\Command\Search($ocConfig));
|
||||
$application->add(new OCA\user_ldap\Command\ShowRemnants(
|
||||
$application->add(new OCA\User_LDAP\Command\ShowConfig($helper));
|
||||
$application->add(new OCA\User_LDAP\Command\SetConfig());
|
||||
$application->add(new OCA\User_LDAP\Command\TestConfig());
|
||||
$application->add(new OCA\User_LDAP\Command\CreateEmptyConfig($helper));
|
||||
$application->add(new OCA\User_LDAP\Command\DeleteConfig($helper));
|
||||
$application->add(new OCA\User_LDAP\Command\Search($ocConfig));
|
||||
$application->add(new OCA\User_LDAP\Command\ShowRemnants(
|
||||
$deletedUsersIndex, \OC::$server->getDateTimeFormatter())
|
||||
);
|
||||
$application->add(new OCA\user_ldap\Command\CheckUser(
|
||||
$application->add(new OCA\User_LDAP\Command\CheckUser(
|
||||
$uBackend, $helper, $deletedUsersIndex, $userMapping)
|
||||
);
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
||||
|
@ -28,7 +28,6 @@ use Symfony\Component\Console\Input\InputInterface;
|
|||
use Symfony\Component\Console\Input\InputOption;
|
||||
use Symfony\Component\Console\Output\OutputInterface;
|
||||
|
||||
use OCA\user_ldap\lib\user\User;
|
||||
use OCA\User_LDAP\lib\User\DeletedUsersIndex;
|
||||
use OCA\User_LDAP\Mapping\UserMapping;
|
||||
use OCA\user_ldap\lib\Helper as LDAPHelper;
|
||||
|
@ -48,10 +47,10 @@ class CheckUser extends Command {
|
|||
protected $mapping;
|
||||
|
||||
/**
|
||||
* @param OCA\user_ldap\User_Proxy $uBackend
|
||||
* @param OCA\user_ldap\lib\Helper $helper
|
||||
* @param OCA\User_LDAP\lib\User\DeletedUsersIndex $dui
|
||||
* @param OCA\User_LDAP\Mapping\UserMapping $mapping
|
||||
* @param User_Proxy $uBackend
|
||||
* @param LDAPHelper $helper
|
||||
* @param DeletedUsersIndex $dui
|
||||
* @param UserMapping $mapping
|
||||
*/
|
||||
public function __construct(User_Proxy $uBackend, LDAPHelper $helper, DeletedUsersIndex $dui, UserMapping $mapping) {
|
||||
$this->backend = $uBackend;
|
|
@ -21,12 +21,10 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
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\lib\Helper;
|
||||
use \OCA\user_ldap\lib\Configuration;
|
|
@ -21,7 +21,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
|
@ -20,7 +20,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
|
@ -21,7 +21,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
|
@ -21,7 +21,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputArgument;
|
|
@ -21,7 +21,7 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
use Symfony\Component\Console\Input\InputInterface;
|
||||
|
@ -39,8 +39,8 @@ class ShowRemnants extends Command {
|
|||
protected $dateFormatter;
|
||||
|
||||
/**
|
||||
* @param OCA\user_ldap\lib\user\DeletedUsersIndex $dui
|
||||
* @param OCP\IDateTimeFormatter $dateFormatter
|
||||
* @param DeletedUsersIndex $dui
|
||||
* @param IDateTimeFormatter $dateFormatter
|
||||
*/
|
||||
public function __construct(DeletedUsersIndex $dui, IDateTimeFormatter $dateFormatter) {
|
||||
$this->dui = $dui;
|
||||
|
@ -74,7 +74,7 @@ class ShowRemnants extends Command {
|
|||
$this->dateFormatter->formatDate($user->getLastLogin()) : '-';
|
||||
$rows[] = array('ocName' => $user->getOCName(),
|
||||
'displayName' => $user->getDisplayName(),
|
||||
'uid' => $user->getUid(),
|
||||
'uid' => $user->getUID(),
|
||||
'dn' => $user->getDN(),
|
||||
'lastLogin' => $lastLogin,
|
||||
'homePath' => $user->getHomePath(),
|
|
@ -21,12 +21,11 @@
|
|||
*
|
||||
*/
|
||||
|
||||
namespace OCA\user_ldap\Command;
|
||||
namespace OCA\User_LDAP\Command;
|
||||
|
||||
use Symfony\Component\Console\Command\Command;
|
||||
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\lib\Helper;
|
||||
use \OCA\user_ldap\lib\Connection;
|
Loading…
Reference in New Issue