summaryrefslogtreecommitdiffstats
path: root/lib/Notification/Listener.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-04-13 14:21:30 +0200
committerJoas Schilling <coding@schilljs.com>2023-04-13 14:28:41 +0200
commitc1970caef4409c05f7e12b4e5a965b13d2a1665f (patch)
tree81bdc28b4c9052134d73a13c580c6250d9fe4659 /lib/Notification/Listener.php
parentf3ff4a8820c3d3aedeffa4caee634407e8ac5aea (diff)
chore(CS): Unify construct() calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Notification/Listener.php')
-rw-r--r--lib/Notification/Listener.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Notification/Listener.php b/lib/Notification/Listener.php
index 42d200aa6..c85ca38b5 100644
--- a/lib/Notification/Listener.php
+++ b/lib/Notification/Listener.php
@@ -57,13 +57,15 @@ class Listener implements IEventListener {
protected bool $shouldSendCallNotification = false;
- public function __construct(IDBConnection $connection,
+ public function __construct(
+ IDBConnection $connection,
IManager $notificationManager,
ParticipantService $participantsService,
IEventDispatcher $dispatcher,
IUserSession $userSession,
ITimeFactory $timeFactory,
- LoggerInterface $logger) {
+ LoggerInterface $logger,
+ ) {
$this->connection = $connection;
$this->notificationManager = $notificationManager;
$this->participantsService = $participantsService;