Total Complexity | 5 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
12 | abstract class AbstractRankingProvider implements RankingProviderInterface |
||
13 | { |
||
14 | protected EntityManagerInterface $em; |
||
15 | protected UserProvider $userProvider; |
||
16 | |||
17 | public function __construct( |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @throws ORMException |
||
27 | */ |
||
28 | protected function getPlayer(): ?Player |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * @throws ORMException |
||
38 | */ |
||
39 | protected function getTeam(): ?Team |
||
47 |