| Total Complexity | 2 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | abstract class AbstractController implements ViewContextInterface |
||
| 16 | { |
||
| 17 | private WebView $webView; |
||
| 18 | protected Aliases $aliases; |
||
| 19 | protected DataResponseFactoryInterface $responseFactory; |
||
| 20 | |||
| 21 | 8 | public function __construct( |
|
| 29 | 8 | } |
|
| 30 | |||
| 31 | 8 | protected function render(string $view, array $parameters = []): ResponseInterface |
|
| 45 | } |
||
| 46 | |||
| 47 | abstract public function getViewPath(): string; |
||
| 48 | } |
||
| 49 |