| Total Complexity | 4 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | final class Overview implements ViewControllerInterface |
||
| 15 | { |
||
| 16 | public const VIEW_IDENTIFIER = 'OVERVIEW'; |
||
| 17 | |||
| 18 | private ViewComponentLoaderInterface $viewComponentLoader; |
||
| 19 | |||
| 20 | private GameSetupInterface $gameSetup; |
||
| 21 | |||
| 22 | public function __construct( |
||
| 23 | ViewComponentLoaderInterface $viewComponentLoader, |
||
| 24 | GameSetupInterface $gameSetup |
||
| 25 | ) { |
||
| 26 | $this->viewComponentLoader = $viewComponentLoader; |
||
| 27 | $this->gameSetup = $gameSetup; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function handle(GameControllerInterface $game): void |
||
| 45 | } |
||
| 46 | } |
||
| 47 |