You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
423 B
PHP
25 lines
423 B
PHP
<?php
|
|
|
|
namespace Engelsystem\Controllers;
|
|
|
|
use Engelsystem\Http\Response;
|
|
|
|
class CreditsController extends BaseController
|
|
{
|
|
/** @var Response */
|
|
protected $response;
|
|
|
|
public function __construct(Response $response)
|
|
{
|
|
$this->response = $response;
|
|
}
|
|
|
|
/**
|
|
* @return Response
|
|
*/
|
|
public function index()
|
|
{
|
|
return $this->response->withView('pages/credits.twig');
|
|
}
|
|
}
|