|
|
|
|
@ -9,25 +9,22 @@
|
|
|
|
|
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\user\DeletedUsersIndex;
|
|
|
|
|
use OCA\User_LDAP\lib\Connection;
|
|
|
|
|
use OCA\User_LDAP\Mapping\UserMapping;
|
|
|
|
|
use OCP\IDateTimeFormatter;
|
|
|
|
|
|
|
|
|
|
class ShowRemnants extends Command {
|
|
|
|
|
/** @var OCA\User_LDAP\lib\User\DeletedUsersIndex */
|
|
|
|
|
/** @var \OCA\User_LDAP\lib\User\DeletedUsersIndex */
|
|
|
|
|
protected $dui;
|
|
|
|
|
|
|
|
|
|
/** @var OCP\IDateTimeFormatter */
|
|
|
|
|
/** @var \OCP\IDateTimeFormatter */
|
|
|
|
|
protected $dateFormatter;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @param OCA\user_ldap\lib\user\DeletedUsersIndex $dui
|
|
|
|
|
* @param OCP\IDateTimeFormatter $dateFormatter
|
|
|
|
|
*/
|
|
|
|
|
public function __construct(DeletedUsersIndex $dui, IDateTimeFormatter $dateFormatter) {
|
|
|
|
|
$this->dui = $dui;
|
|
|
|
|
|