userId = $UserId; $this->appName = $AppName; $this->eventDispatcher = $eventDispatcher; } /** * @NoAdminRequired * @NoCSRFRequired */ public function index() { Util::addScript($this->appName, 'betterphotos-main'); Util::addStyle($this->appName, 'icons'); $this->eventDispatcher->dispatchTyped(new LoadViewer()); $response = new TemplateResponse($this->appName, 'main'); return $response; } }