Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
9 | final class Doctrine implements ConfigPartInterface |
||
10 | { |
||
11 | const PART_KEY = 'doctrine'; |
||
12 | |||
13 | /** |
||
14 | * @var DataProviderInterface |
||
15 | */ |
||
16 | private $dataProvider; |
||
17 | |||
18 | 10 | public function __construct(DataProviderInterface $dataProvider) |
|
21 | 10 | } |
|
22 | |||
23 | 10 | public function getConfig(): array |
|
30 | ], |
||
31 | ], |
||
32 | ], |
||
33 | ]; |
||
34 | } |
||
35 | |||
36 | /** |
||
37 | * Part Code |
||
38 | * |
||
39 | * @return string |
||
40 | */ |
||
41 | 10 | public function getCode(): string |
|
46 |