summaryrefslogtreecommitdiffstats
path: root/lib/Controller/PageController.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/Controller/PageController.php
parent349e1e8d6060f227c508f927985805a63bc89efb (diff)
automated: Apply CS fix
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/PageController.php')
-rw-r--r--lib/Controller/PageController.php42
1 files changed, 21 insertions, 21 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 56f93f687..3424910ab 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -26,9 +26,9 @@ declare(strict_types=1);
namespace OCA\Talk\Controller;
use OCA\Talk\AppInfo\Application;
+use OCA\Talk\Config;
use OCA\Talk\Exceptions\ParticipantNotFoundException;
use OCA\Talk\Exceptions\RoomNotFoundException;
-use OCA\Talk\Config;
use OCA\Talk\Manager;
use OCA\Talk\Participant;
use OCA\Talk\Room;
@@ -44,8 +44,8 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
use OCP\AppFramework\Http\NotFoundResponse;
use OCP\AppFramework\Http\RedirectResponse;
use OCP\AppFramework\Http\Response;
-use OCP\AppFramework\Http\TemplateResponse;
use OCP\AppFramework\Http\Template\PublicTemplateResponse;
+use OCP\AppFramework\Http\TemplateResponse;
use OCP\AppFramework\Services\IInitialState;
use OCP\Collaboration\Reference\RenderReferenceEvent;
use OCP\Collaboration\Resources\LoadAdditionalScriptsEvent;
@@ -81,25 +81,25 @@ class PageController extends Controller {
private IThrottler $throttler;
public function __construct(string $appName,
- IRequest $request,
- IEventDispatcher $eventDispatcher,
- RoomController $api,
- TalkSession $session,
- IUserSession $userSession,
- ?string $UserId,
- LoggerInterface $logger,
- Manager $manager,
- ParticipantService $participantService,
- RoomService $roomService,
- IURLGenerator $url,
- INotificationManager $notificationManager,
- IAppManager $appManager,
- IInitialState $initialState,
- ICacheFactory $memcacheFactory,
- IRootFolder $rootFolder,
- IThrottler $throttler,
- Config $talkConfig,
- IConfig $serverConfig) {
+ IRequest $request,
+ IEventDispatcher $eventDispatcher,
+ RoomController $api,
+ TalkSession $session,
+ IUserSession $userSession,
+ ?string $UserId,
+ LoggerInterface $logger,
+ Manager $manager,
+ ParticipantService $participantService,
+ RoomService $roomService,
+ IURLGenerator $url,
+ INotificationManager $notificationManager,
+ IAppManager $appManager,
+ IInitialState $initialState,
+ ICacheFactory $memcacheFactory,
+ IRootFolder $rootFolder,
+ IThrottler $throttler,
+ Config $talkConfig,
+ IConfig $serverConfig) {
parent::__construct($appName, $request);
$this->eventDispatcher = $eventDispatcher;
$this->api = $api;