| Total Complexity | 3 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class TeamMasterBadgeHandler |
||
| 11 | { |
||
| 12 | private EntityManagerInterface $em; |
||
| 13 | private TeamGameRankingQuery $teamGameRankingQuery; |
||
| 14 | |||
| 15 | public function __construct(EntityManagerInterface $em, TeamGameRankingQuery $teamGameRankingQuery) |
||
| 16 | { |
||
| 17 | $this->em = $em; |
||
| 18 | $this->teamGameRankingQuery = $teamGameRankingQuery; |
||
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @throws ORMException |
||
| 23 | */ |
||
| 24 | public function process(Game $game): void |
||
| 34 | } |
||
| 35 | } |
||
| 36 |