summaryrefslogtreecommitdiffstats
path: root/lib/GuestManager.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/GuestManager.php
parentf3ff4a8820c3d3aedeffa4caee634407e8ac5aea (diff)
chore(CS): Unify construct() calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/GuestManager.php')
-rw-r--r--lib/GuestManager.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/GuestManager.php b/lib/GuestManager.php
index ad19f4146..d38ae48cd 100644
--- a/lib/GuestManager.php
+++ b/lib/GuestManager.php
@@ -52,7 +52,8 @@ class GuestManager {
protected IL10N $l;
protected IEventDispatcher $dispatcher;
- public function __construct(Config $talkConfig,
+ public function __construct(
+ Config $talkConfig,
IMailer $mailer,
Defaults $defaults,
IUserSession $userSession,
@@ -60,7 +61,8 @@ class GuestManager {
PollService $pollService,
IURLGenerator $url,
IL10N $l,
- IEventDispatcher $dispatcher) {
+ IEventDispatcher $dispatcher,
+ ) {
$this->talkConfig = $talkConfig;
$this->mailer = $mailer;
$this->defaults = $defaults;