| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class PresetLoader |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @var PresetLocator |
||
| 11 | */ |
||
| 12 | private $locator; |
||
| 13 | |||
| 14 | public function __construct(PresetLocator $locator) |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $presetName |
||
| 21 | * |
||
| 22 | * @return PresetInterface |
||
| 23 | */ |
||
| 24 | public function getPreset(string $presetName): PresetInterface |
||
| 29 |