config = $config; $this->faq = $faq; $this->response = $response; } /** * @return Response */ public function index(): Response { $text = $this->config->get('faq_text'); $faq = $this->faq->orderBy('question')->get(); return $this->response->withView( 'pages/faq/overview.twig', ['text' => $text, 'items' => $faq] + $this->getNotifications() ); } }