summaryrefslogtreecommitdiffstats
path: root/lib/Controller/PageController.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/Controller/PageController.php
parentf3ff4a8820c3d3aedeffa4caee634407e8ac5aea (diff)
chore(CS): Unify construct() calls
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/PageController.php')
-rw-r--r--lib/Controller/PageController.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 3424910ab..88ddddf61 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -80,7 +80,8 @@ class PageController extends Controller {
private IRootFolder $rootFolder;
private IThrottler $throttler;
- public function __construct(string $appName,
+ public function __construct(
+ string $appName,
IRequest $request,
IEventDispatcher $eventDispatcher,
RoomController $api,
@@ -99,7 +100,8 @@ class PageController extends Controller {
IRootFolder $rootFolder,
IThrottler $throttler,
Config $talkConfig,
- IConfig $serverConfig) {
+ IConfig $serverConfig,
+ ) {
parent::__construct($appName, $request);
$this->eventDispatcher = $eventDispatcher;
$this->api = $api;