| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | final class ConfigurationFactory implements ConfigurationFactoryInterface |
||
| 18 | { |
||
| 19 | public function __construct(private readonly ServiceLocatorInterface $serviceManager) |
||
| 20 | { |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @param array<string, mixed> $config |
||
| 25 | * |
||
| 26 | * @return Configuration |
||
| 27 | * |
||
| 28 | * @throws ConfigurationFactoryException |
||
| 29 | */ |
||
| 30 | public function create(array $config): Configuration |
||
| 39 | ); |
||
| 40 | } |
||
| 43 |