Total Complexity | 2 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | final class FactoryC extends AbstractFactory |
||
14 | { |
||
15 | private StringValueInterface $stringValue; |
||
16 | |||
17 | public function __construct(StringValueInterface $stringValue) |
||
18 | { |
||
19 | $this->stringValue = $stringValue; |
||
20 | } |
||
21 | |||
22 | public function getArrayConfigAndProvidedDependency(): array |
||
28 | ]; |
||
29 | } |
||
31 |