Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Rudolf <github.com@daniel-rudolf.de>2020-05-08 17:41:24 +0300
committerDaniel Rudolf <github.com@daniel-rudolf.de>2020-05-08 17:49:08 +0300
commit02f887acfe4206a876b5f31e52f5ed25252ebdbd (patch)
tree2b9084429de81ed0e829268f26a8feeaeb30c887 /lib/Command
parent46a67e5b6e75fd7c9307f94ce7b4268c8f26da00 (diff)
Various small improvements to talk:room:* commands
Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
Diffstat (limited to 'lib/Command')
-rw-r--r--lib/Command/Room/Add.php1
-rw-r--r--lib/Command/Room/Create.php1
-rw-r--r--lib/Command/Room/Delete.php1
-rw-r--r--lib/Command/Room/Demote.php2
-rw-r--r--lib/Command/Room/Promote.php2
-rw-r--r--lib/Command/Room/Remove.php2
-rw-r--r--lib/Command/Room/Update.php1
7 files changed, 0 insertions, 10 deletions
diff --git a/lib/Command/Room/Add.php b/lib/Command/Room/Add.php
index 743484005..d213beb1e 100644
--- a/lib/Command/Room/Add.php
+++ b/lib/Command/Room/Add.php
@@ -29,7 +29,6 @@ use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
-use OCP\IConfig;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
diff --git a/lib/Command/Room/Create.php b/lib/Command/Room/Create.php
index 3113fae1c..f2003e45d 100644
--- a/lib/Command/Room/Create.php
+++ b/lib/Command/Room/Create.php
@@ -27,7 +27,6 @@ namespace OCA\Talk\Command\Room;
use Exception;
use OC\Core\Command\Base;
use OCA\Talk\Manager;
-use OCP\IConfig;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
diff --git a/lib/Command/Room/Delete.php b/lib/Command/Room/Delete.php
index 6c22a1544..d065cc469 100644
--- a/lib/Command/Room/Delete.php
+++ b/lib/Command/Room/Delete.php
@@ -28,7 +28,6 @@ use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
-use OCP\IConfig;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
diff --git a/lib/Command/Room/Demote.php b/lib/Command/Room/Demote.php
index 5169b6930..008030811 100644
--- a/lib/Command/Room/Demote.php
+++ b/lib/Command/Room/Demote.php
@@ -29,11 +29,9 @@ use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
-use OCP\IConfig;
use OCP\IUserManager;
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 Demote extends Base {
diff --git a/lib/Command/Room/Promote.php b/lib/Command/Room/Promote.php
index 9fd647139..c55315343 100644
--- a/lib/Command/Room/Promote.php
+++ b/lib/Command/Room/Promote.php
@@ -29,11 +29,9 @@ use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
-use OCP\IConfig;
use OCP\IUserManager;
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 Promote extends Base {
diff --git a/lib/Command/Room/Remove.php b/lib/Command/Room/Remove.php
index c7d15d0a7..0c0f77012 100644
--- a/lib/Command/Room/Remove.php
+++ b/lib/Command/Room/Remove.php
@@ -29,11 +29,9 @@ use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
-use OCP\IConfig;
use OCP\IUserManager;
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 Remove extends Base {
diff --git a/lib/Command/Room/Update.php b/lib/Command/Room/Update.php
index 814e9e0e5..500e898a8 100644
--- a/lib/Command/Room/Update.php
+++ b/lib/Command/Room/Update.php
@@ -29,7 +29,6 @@ use OC\Core\Command\Base;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
use OCA\Talk\Room;
-use OCP\IConfig;
use OCP\IUserManager;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;