| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class PlayerChartStatsController extends AbstractController |
||
| 15 | { |
||
| 16 | private PlayerChartStatusRepository $playerChartStatusRepository; |
||
| 17 | |||
| 18 | public function __construct(PlayerChartStatusRepository $playerChartStatusRepository) |
||
| 19 | { |
||
| 20 | $this->playerChartStatusRepository = $playerChartStatusRepository; |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param Player $player |
||
| 25 | * @return mixed |
||
| 26 | */ |
||
| 27 | public function playerChartStatus(Player $player): mixed |
||
| 30 | } |
||
| 31 | } |
||
| 32 |