blob: 568811c7221e2e9b9d5429421fca65f94e780a15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<?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');
}
}
|