summaryrefslogtreecommitdiffstats
path: root/lib/Service/BreakoutRoomService.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/BreakoutRoomService.php')
-rw-r--r--lib/Service/BreakoutRoomService.php35
1 files changed, 10 insertions, 25 deletions
diff --git a/lib/Service/BreakoutRoomService.php b/lib/Service/BreakoutRoomService.php
index ebcb7a9a5..e3400f74d 100644
--- a/lib/Service/BreakoutRoomService.php
+++ b/lib/Service/BreakoutRoomService.php
@@ -40,31 +40,16 @@ use OCP\Notification\IManager as INotificationManager;
use OCP\IL10N;
class BreakoutRoomService {
- protected Config $config;
- protected Manager $manager;
- protected RoomService $roomService;
- protected ParticipantService $participantService;
- protected ChatManager $chatManager;
- protected INotificationManager $notificationManager;
- protected IEventDispatcher $dispatcher;
- protected IL10N $l;
-
- public function __construct(Config $config,
- Manager $manager,
- RoomService $roomService,
- ParticipantService $participantService,
- ChatManager $chatManager,
- INotificationManager $notificationManager,
- IEventDispatcher $dispatcher,
- IL10N $l) {
- $this->config = $config;
- $this->manager = $manager;
- $this->roomService = $roomService;
- $this->participantService = $participantService;
- $this->chatManager = $chatManager;
- $this->notificationManager = $notificationManager;
- $this->dispatcher = $dispatcher;
- $this->l = $l;
+ public function __construct(
+ protected Config $config,
+ protected Manager $manager,
+ protected RoomService $roomService,
+ protected ParticipantService $participantService,
+ protected ChatManager $chatManager,
+ protected INotificationManager $notificationManager,
+ protected IEventDispatcher $dispatcher,
+ protected IL10N $l,
+ ) {
}
/**