Total Complexity | 3 |
Total Lines | 40 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | final class Dependencies implements ConfigPartInterface |
||
11 | { |
||
12 | const PART_KEY = 'dependencies'; |
||
13 | |||
14 | /** |
||
15 | * @var DataProviderInterface |
||
16 | */ |
||
17 | private $dataProvider; |
||
18 | |||
19 | 2 | public function __construct(DataProviderInterface $dataProvider) |
|
22 | 2 | } |
|
23 | |||
24 | /** |
||
25 | * @inheritdoc |
||
26 | */ |
||
27 | 2 | public function getConfig(): array |
|
39 | ), |
||
40 | ], |
||
41 | ]; |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @inheritdoc |
||
46 | */ |
||
47 | 2 | public function getCode(): string |
|
52 |