| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | final class FactoryC 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 |