Total Complexity | 4 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
13 | final class Factory implements FactoryInterface |
||
14 | { |
||
15 | public function __construct( |
||
16 | private SchemeCollectionInterface $scheme, |
||
17 | private readonly UriFactory $uri, |
||
18 | 66 | ) { |
|
19 | } |
||
20 | 66 | ||
21 | 66 | /** |
|
22 | * Set scheme collection |
||
23 | * |
||
24 | * @codeCoverageIgnore |
||
25 | */ |
||
26 | #[Inject(optional: true)] |
||
30 | } |
||
31 | |||
32 | /** |
||
33 | * {@inheritDoc} |
||
34 | * |
||
35 | * @throws UriException |
||
36 | */ |
||
37 | #[Override] |
||
48 | } |
||
49 | } |
||
50 |