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