]> source.dussan.org Git - nextcloud-server.git/commitdiff
Cleanup files_external command imports 1210/head
authorRoeland Jago Douma <roeland@famdouma.nl>
Tue, 6 Sep 2016 19:36:03 +0000 (21:36 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Tue, 6 Sep 2016 19:36:03 +0000 (21:36 +0200)
apps/files_external/lib/Command/Backends.php
apps/files_external/lib/Command/Config.php
apps/files_external/lib/Command/Export.php

index b5c1b7f7a54bcb4321fa867cc23d81054c1f731d..d05b9fa4a9dd6039af18d7154a868bdf4e1145bf 100644 (file)
@@ -27,14 +27,8 @@ use OCA\Files_External\Lib\Auth\AuthMechanism;
 use OCA\Files_External\Lib\Backend\Backend;
 use OCA\Files_External\Lib\DefinitionParameter;
 use OCA\Files_External\Service\BackendService;
-use Symfony\Component\Console\Command\Command;
-use Symfony\Component\Console\Helper\Table;
-use Symfony\Component\Console\Helper\TableHelper;
-use Symfony\Component\Console\Input\ArrayInput;
 use Symfony\Component\Console\Input\InputArgument;
 use Symfony\Component\Console\Input\InputInterface;
-use Symfony\Component\Console\Input\InputOption;
-use Symfony\Component\Console\Input\Input;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class Backends extends Base {
index cd1c9244d130d44b1421fe486bc25aafe5398713..362f0a0f2b5b19122332b8402f8a9529cfa10d14 100644 (file)
@@ -27,12 +27,8 @@ use OC\Core\Command\Base;
 use OCA\Files_External\Lib\StorageConfig;
 use OCA\Files_External\NotFoundException;
 use OCA\Files_External\Service\GlobalStoragesService;
-use Symfony\Component\Console\Command\Command;
-use Symfony\Component\Console\Helper\Table;
-use Symfony\Component\Console\Helper\TableHelper;
 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 Config extends Base {
index 9e586609d62b44e2b2a7a3be6e6943006a61436a..722ba38fee3508fc86a971666d5ff49fbb37076c 100644 (file)
 
 namespace OCA\Files_External\Command;
 
-use Symfony\Component\Console\Command\Command;
-use Symfony\Component\Console\Helper\Table;
-use Symfony\Component\Console\Helper\TableHelper;
 use Symfony\Component\Console\Input\ArrayInput;
 use Symfony\Component\Console\Input\InputArgument;
 use Symfony\Component\Console\Input\InputInterface;
 use Symfony\Component\Console\Input\InputOption;
-use Symfony\Component\Console\Input\Input;
 use Symfony\Component\Console\Output\OutputInterface;
 
 class Export extends ListCommand {