Total Complexity | 2 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | class DefaultApplicationConfigurationFactory implements ApplicationConfigurationFactoryInterface |
||
15 | { |
||
16 | /** |
||
17 | * @param array<string, mixed> $configuration |
||
18 | */ |
||
19 | 1 | public function __construct(private readonly array $configuration) |
|
20 | { |
||
21 | 1 | } |
|
22 | |||
23 | 2 | public function create(): ApplicationConfigurationInterface |
|
26 | } |
||
27 | } |
||
28 |