Total Complexity | 3 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class MemoryFailerDriverConfigurator implements FailerDriverConfiguratorInterface |
||
16 | { |
||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | 8 | public function scheme(): string |
|
21 | { |
||
22 | 8 | return 'memory'; |
|
23 | } |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | 8 | public function available(ContainerBuilder $container): bool |
|
31 | } |
||
32 | |||
33 | /** |
||
34 | * {@inheritdoc} |
||
35 | */ |
||
36 | 5 | public function configure(DsnRequest $dsn, ContainerBuilder $container): string |
|
43 |