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:
Diffstat (limited to 'lib/Command/Room/Create.php')
-rw-r--r--lib/Command/Room/Create.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/Command/Room/Create.php b/lib/Command/Room/Create.php
index f2003e45d..95a395158 100644
--- a/lib/Command/Room/Create.php
+++ b/lib/Command/Room/Create.php
@@ -36,16 +36,12 @@ use Symfony\Component\Console\Output\OutputInterface;
class Create extends Base {
use TRoomCommand;
- /** @var IUserManager */
- public $userManager;
-
/** @var Manager */
public $manager;
- public function __construct(IUserManager $userManager, Manager $manager) {
+ public function __construct(Manager $manager) {
parent::__construct();
- $this->userManager = $userManager;
$this->manager = $manager;
}