Total Complexity | 2 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | final class FactoryB extends AbstractFactory |
||
16 | { |
||
17 | use DocBlockResolverAwareTrait; |
||
18 | |||
19 | private StringValueInterface $stringValue; |
||
20 | |||
21 | public function __construct(StringValueInterface $stringValue) |
||
22 | { |
||
23 | $this->stringValue = $stringValue; |
||
24 | } |
||
25 | |||
26 | public function getArrayConfigAndProvidedDependency(): array |
||
33 | ]; |
||
34 | } |
||
36 |