| Total Complexity | 1 |
| Total Lines | 13 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class Controller implements I18nAwareInterface, ViewAwareInterface, SiteConfigAwareInterface |
||
| 14 | { |
||
| 15 | use HasSiteConfigTrait; |
||
| 16 | use HasTranslatorTrait; |
||
| 17 | use HasViewTrait; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param ResponseInterface $response |
||
| 21 | * @param string $layout |
||
| 22 | */ |
||
| 23 | public function responseWithLayout(ResponseInterface $response, string $layout): ResponseInterface |
||
| 28 |