| Total Complexity | 3 |
| Total Lines | 44 |
| 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 |
|
| 44 | ], |
||
| 45 | ]; |
||
| 46 | } |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @inheritdoc |
||
| 50 | */ |
||
| 51 | 2 | public function getCode(): string |
|
| 56 |