diff options
author | Morris Jobke <hey@morrisjobke.de> | 2018-02-14 16:55:43 +0100 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-02-14 16:55:43 +0100 |
commit | d3d045dd5c5af5f29268727afe63f3c53d22af6c (patch) | |
tree | d9d972a389eab29dcf97e3e30d0fb292f2da5f03 /core/Command/Security | |
parent | 3fc6d6234e39914d8e6e7d4b9ffe0b5420d3aa2d (diff) | |
download | nextcloud-server-d3d045dd5c5af5f29268727afe63f3c53d22af6c.tar.gz nextcloud-server-d3d045dd5c5af5f29268727afe63f3c53d22af6c.zip |
Remove unused import statements
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Command/Security')
-rw-r--r-- | core/Command/Security/ImportCertificate.php | 3 | ||||
-rw-r--r-- | core/Command/Security/ListCertificates.php | 2 | ||||
-rw-r--r-- | core/Command/Security/RemoveCertificate.php | 3 |
3 files changed, 0 insertions, 8 deletions
diff --git a/core/Command/Security/ImportCertificate.php b/core/Command/Security/ImportCertificate.php index 38a774add50..02c64b81d9a 100644 --- a/core/Command/Security/ImportCertificate.php +++ b/core/Command/Security/ImportCertificate.php @@ -24,11 +24,8 @@ namespace OC\Core\Command\Security; use OC\Core\Command\Base; use OCP\ICertificateManager; -use Symfony\Component\Console\Command\Command; -use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class ImportCertificate extends Base { diff --git a/core/Command/Security/ListCertificates.php b/core/Command/Security/ListCertificates.php index fe19348876a..2ee9909813c 100644 --- a/core/Command/Security/ListCertificates.php +++ b/core/Command/Security/ListCertificates.php @@ -26,10 +26,8 @@ use OC\Core\Command\Base; use OCP\ICertificate; use OCP\ICertificateManager; use OCP\IL10N; -use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class ListCertificates extends Base { diff --git a/core/Command/Security/RemoveCertificate.php b/core/Command/Security/RemoveCertificate.php index 8be7123ad08..31ddc73877b 100644 --- a/core/Command/Security/RemoveCertificate.php +++ b/core/Command/Security/RemoveCertificate.php @@ -25,11 +25,8 @@ namespace OC\Core\Command\Security; use OC\Core\Command\Base; use OCP\ICertificateManager; -use Symfony\Component\Console\Command\Command; -use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; -use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; class RemoveCertificate extends Base { |