| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class AbstractMagisController extends AbstractController |
||
| 15 | { |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param string $view |
||
| 19 | * @param array<string,mixed> $parameters |
||
| 20 | * @param Response|null $response |
||
| 21 | * @return Response |
||
| 22 | * @throws \Psr\Container\ContainerExceptionInterface |
||
| 23 | * @throws \Psr\Container\NotFoundExceptionInterface |
||
| 24 | */ |
||
| 25 | protected function renderPhpView(string $view, array $parameters = [], Response $response = null): Response |
||
| 37 | } |
||
| 38 | |||
| 39 | public static function getSubscribedServices(): array |
||
| 50 | } |