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/Group | |
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/Group')
-rw-r--r-- | core/Command/Group/AddUser.php | 2 | ||||
-rw-r--r-- | core/Command/Group/ListCommand.php | 3 | ||||
-rw-r--r-- | core/Command/Group/RemoveUser.php | 2 |
3 files changed, 0 insertions, 7 deletions
diff --git a/core/Command/Group/AddUser.php b/core/Command/Group/AddUser.php index 05ae4e2d526..738c25ae13d 100644 --- a/core/Command/Group/AddUser.php +++ b/core/Command/Group/AddUser.php @@ -26,10 +26,8 @@ namespace OC\Core\Command\Group; use OC\Core\Command\Base; use OCP\IGroupManager; use OCP\IUserManager; -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; class AddUser extends Base { diff --git a/core/Command/Group/ListCommand.php b/core/Command/Group/ListCommand.php index f3703bc1099..a2b694b30e4 100644 --- a/core/Command/Group/ListCommand.php +++ b/core/Command/Group/ListCommand.php @@ -26,9 +26,6 @@ namespace OC\Core\Command\Group; use OC\Core\Command\Base; use OCP\IGroup; use OCP\IGroupManager; -use OCP\IUser; -use OCP\IUserManager; -use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; diff --git a/core/Command/Group/RemoveUser.php b/core/Command/Group/RemoveUser.php index 09f081004d2..964691597bf 100644 --- a/core/Command/Group/RemoveUser.php +++ b/core/Command/Group/RemoveUser.php @@ -26,10 +26,8 @@ namespace OC\Core\Command\Group; use OC\Core\Command\Base; use OCP\IGroupManager; use OCP\IUserManager; -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; class RemoveUser extends Base { |