Total Complexity | 4 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 87.5% |
Changes | 0 |
1 | <?php |
||
21 | class RouteCollectionFactory implements RouteCollectionFactoryInterface |
||
22 | { |
||
23 | private RouteCollectionInterface|null $routeCollection; |
||
24 | |||
25 | public function __construct( |
||
26 | private readonly RouteLocatorFactoryInterface $routeLocatorFactory |
||
27 | ) { |
||
28 | 6 | $this->routeCollection = null; |
|
29 | } |
||
30 | |||
31 | /** |
||
32 | * {@inheritDoc} |
||
33 | */ |
||
34 | public function create(): RouteCollectionInterface |
||
48 | } |
||
49 | } |
||
50 |