1 | <?php |
||
24 | class RouteMatchSpecificationFactory extends FactoryWithDependencyResolver |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * RouteMatchSpecificationFactory constructor |
||
29 | * |
||
30 | * @param RouteMatchSpecificationDependencyResolver $dependency_resolver |
||
31 | * @param LoaderInterface $loader |
||
32 | */ |
||
33 | public function __construct(RouteMatchSpecificationDependencyResolver $dependency_resolver, LoaderInterface $loader) |
||
37 | |||
38 | /** |
||
39 | * @param $fqcn |
||
40 | * @return RouteMatchSpecification |
||
41 | * @throws InvalidDataTypeException |
||
42 | * @throws ReflectionException |
||
43 | * @since $VID:$ |
||
44 | */ |
||
45 | public function createNewRouteMatchSpecification($fqcn) |
||
50 | |||
51 | |||
52 | /** |
||
53 | * @param $fqcn |
||
54 | * @return RouteMatchSpecification |
||
55 | * @throws InvalidArgumentException |
||
56 | * @throws InvalidDataTypeException |
||
57 | * @throws InvalidInterfaceException |
||
58 | * @throws ReflectionException |
||
59 | * @since $VID:$ |
||
60 | */ |
||
61 | public static function create($fqcn) |
||
69 | } |
||
70 |