summaryrefslogtreecommitdiffstats
path: root/lib/Room.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-13 13:17:49 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-13 13:17:49 +0200
commitf3ff4a8820c3d3aedeffa4caee634407e8ac5aea (patch)
treee43214327b9e3a01e05a9932f2cde44d6402e9d1 /lib/Room.php
parent349e1e8d6060f227c508f927985805a63bc89efb (diff)
automated: Apply CS fix
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Room.php')
-rw-r--r--lib/Room.php64
1 files changed, 32 insertions, 32 deletions
diff --git a/lib/Room.php b/lib/Room.php
index aeaa74989..a08fcca9a 100644
--- a/lib/Room.php
+++ b/lib/Room.php
@@ -202,38 +202,38 @@ class Room {
protected ?Participant $participant = null;
public function __construct(Manager $manager,
- IDBConnection $db,
- IEventDispatcher $dispatcher,
- ITimeFactory $timeFactory,
- int $id,
- int $type,
- int $readOnly,
- int $listable,
- int $messageExpiration,
- int $lobbyState,
- int $sipEnabled,
- ?int $assignedSignalingServer,
- string $token,
- string $name,
- string $description,
- string $password,
- string $avatar,
- string $remoteServer,
- string $remoteToken,
- int $activeGuests,
- int $defaultPermissions,
- int $callPermissions,
- int $callFlag,
- ?\DateTime $activeSince,
- ?\DateTime $lastActivity,
- int $lastMessageId,
- ?IComment $lastMessage,
- ?\DateTime $lobbyTimer,
- string $objectType,
- string $objectId,
- int $breakoutRoomMode,
- int $breakoutRoomStatus,
- int $callRecording) {
+ IDBConnection $db,
+ IEventDispatcher $dispatcher,
+ ITimeFactory $timeFactory,
+ int $id,
+ int $type,
+ int $readOnly,
+ int $listable,
+ int $messageExpiration,
+ int $lobbyState,
+ int $sipEnabled,
+ ?int $assignedSignalingServer,
+ string $token,
+ string $name,
+ string $description,
+ string $password,
+ string $avatar,
+ string $remoteServer,
+ string $remoteToken,
+ int $activeGuests,
+ int $defaultPermissions,
+ int $callPermissions,
+ int $callFlag,
+ ?\DateTime $activeSince,
+ ?\DateTime $lastActivity,
+ int $lastMessageId,
+ ?IComment $lastMessage,
+ ?\DateTime $lobbyTimer,
+ string $objectType,
+ string $objectId,
+ int $breakoutRoomMode,
+ int $breakoutRoomStatus,
+ int $callRecording) {
$this->manager = $manager;
$this->db = $db;
$this->dispatcher = $dispatcher;