config = $config; $this->response = $response; $this->version = $version; } /** * @return Response */ public function index() { return $this->response->withView( 'pages/credits.twig', [ 'credits' => $this->config->get('credits'), 'version' => $this->version->getVersion(), ] ); } }