Total Complexity | 4 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
13 | class Team implements TeamInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var ClientInterface |
||
17 | */ |
||
18 | private $client; |
||
19 | |||
20 | /** |
||
21 | * @var EntityManagerInterface |
||
22 | */ |
||
23 | private $entityManager; |
||
24 | |||
25 | /** |
||
26 | * @param ClientInterface $client |
||
27 | * @param EntityManagerInterface $entityManager |
||
28 | */ |
||
29 | public function __construct(ClientInterface $client, EntityManagerInterface $entityManager) |
||
33 | } |
||
34 | |||
35 | |||
36 | public function import() : void |
||
55 | } |