Total Complexity | 5 |
Total Lines | 36 |
Duplicated Lines | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class RoutingAnnotationLoader extends Loader |
||
14 | { |
||
15 | private AnnotatedRouteControllerLoader $annotatedRouteControllerLoader; |
||
16 | |||
17 | private bool $isLoaded = false; |
||
18 | |||
19 | private array $configuration; |
||
20 | |||
21 | public function __construct(AnnotatedRouteControllerLoader $annotatedRouteController, array $configuration) |
||
25 | } |
||
26 | |||
27 | public function load(mixed $resource, ?string $type = null): RouteCollection |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * @param ?string $type |
||
45 | */ |
||
46 | public function supports(mixed $resource, ?string $type = null): bool |
||
51 |