| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | final class ShowInnerContent implements ViewControllerInterface |
||
| 13 | { |
||
| 14 | public const VIEW_IDENTIFIER = 'SHOW_INNER_CONTENT'; |
||
| 15 | |||
| 16 | private ViewComponentLoaderInterface $viewComponentLoader; |
||
| 17 | |||
| 18 | public function __construct( |
||
| 19 | ViewComponentLoaderInterface $viewComponentLoader |
||
| 20 | ) { |
||
| 21 | $this->viewComponentLoader = $viewComponentLoader; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function handle(GameControllerInterface $game): void |
||
| 33 | } |
||
| 34 | } |
||
| 35 |