diff options
Diffstat (limited to 'apps/user_ldap/command/showremnants.php')
-rw-r--r-- | apps/user_ldap/command/showremnants.php | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/apps/user_ldap/command/showremnants.php b/apps/user_ldap/command/showremnants.php index 5b7322e7711..5cfab34ef95 100644 --- a/apps/user_ldap/command/showremnants.php +++ b/apps/user_ldap/command/showremnants.php @@ -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; |