| Total Complexity | 5 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Coverage | 70% |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | final class Combined implements Factory |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var string |
||
| 15 | */ |
||
| 16 | private const TYPE = 'combined'; |
||
| 17 | |||
| 18 | public function __construct(private Collection $collection) {} |
||
| 19 | |||
| 20 | public function create(string $name, array $config): Dictionary |
||
| 35 | } |
||
| 36 | |||
| 37 | public function supports(array $config): bool |
||
| 40 | 1 | } |
|
| 41 | } |
||
| 42 |