| Total Complexity | 3 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class SiteController |
||
| 11 | { |
||
| 12 | private ViewRenderer $viewRenderer; |
||
| 13 | 1 | ||
| 14 | public function __construct(ViewRenderer $viewRenderer) |
||
| 17 | } |
||
| 18 | 1 | public function index(): ResponseInterface |
|
| 19 | { |
||
| 20 | return $this->viewRenderer->render('index'); |
||
| 21 | } |
||
| 22 | |||
| 23 | 1 | public function about(): ResponseInterface |
|
| 26 | 1 | } |
|
| 27 | } |
||
| 28 |