Total Complexity | 4 |
Total Lines | 28 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class PlayerSerieBadgeHandler |
||
11 | { |
||
12 | private EntityManagerInterface $em; |
||
13 | private RankingProviderInterface $rankingProvider; //PlayerSerieRankingQuery |
||
14 | |||
15 | public function __construct(EntityManagerInterface $em, RankingProviderInterface $rankingProvider) |
||
16 | { |
||
17 | $this->em = $em; |
||
18 | $this->rankingProvider = $rankingProvider; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * @throws ORMException |
||
23 | */ |
||
24 | public function process(Serie $serie): void |
||
38 | } |
||
39 | } |
||
40 |