Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 50% |
Changes | 0 |
1 | <?php |
||
10 | class PresetLoader |
||
11 | { |
||
12 | /** |
||
13 | * @var PresetLocator |
||
14 | */ |
||
15 | private $locator; |
||
16 | |||
17 | /** |
||
18 | * @var ContainerInterface |
||
19 | */ |
||
20 | private $container; |
||
21 | |||
22 | 2 | public function __construct(PresetLocator $locator, ContainerInterface $container) |
|
26 | 2 | } |
|
27 | |||
28 | public function getPreset(string $presetName): PresetInterface |
||
37 |