diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-07 13:28:56 +0100 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2015-01-07 13:28:56 +0100 |
commit | 9668405ec73e5fcf648b93e2ebfa217ac81518ea (patch) | |
tree | d55890f005e8839363fae66387e2003137f5877d /apps/user_ldap/command/showremnants.php | |
parent | 6c335ee6fc846275b2138d480286a1dbcf1f4afe (diff) | |
download | nextcloud-server-9668405ec73e5fcf648b93e2ebfa217ac81518ea.tar.gz nextcloud-server-9668405ec73e5fcf648b93e2ebfa217ac81518ea.zip |
doc fixes and removal of unnecessary use statements
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; |