class ServiceRouterLoader extends ObjectRouteLoader

A route loader that executes a service to load the routes.

This depends on the DependencyInjection component.

Methods

getResolver()

Gets the loader resolver.

from Loader
setResolver(LoaderResolverInterface $resolver)

Sets the loader resolver.

from Loader
mixed
import(mixed $resource, string|null $type = null)

Imports a resource.

from Loader
resolve(mixed $resource, string|null $type = null)

Finds a loader able to load an imported resource.

from Loader
load(mixed $resource, string|null $type = null)

Calls the service that will load the routes.

bool
supports(mixed $resource, string|null $type = null)

Returns whether this class supports the given resource.

__construct(ContainerInterface $container)

No description

Details

in Loader at line line 28
LoaderResolverInterface getResolver()

Gets the loader resolver.

Return Value

LoaderResolverInterface A LoaderResolverInterface instance

in Loader at line line 36
setResolver(LoaderResolverInterface $resolver)

Sets the loader resolver.

Parameters

LoaderResolverInterface $resolver A LoaderResolverInterface instance

in Loader at line line 49
mixed import(mixed $resource, string|null $type = null)

Imports a resource.

Parameters

mixed $resource A resource
string|null $type The resource type or null if unknown

Return Value

mixed

in Loader at line line 64
LoaderInterface resolve(mixed $resource, string|null $type = null)

Finds a loader able to load an imported resource.

Parameters

mixed $resource A resource
string|null $type The resource type or null if unknown

Return Value

LoaderInterface A LoaderInterface instance

Exceptions

FileLoaderLoadException If no loader is found

in ObjectRouteLoader at line line 45
load(mixed $resource, string|null $type = null)

Calls the service that will load the routes.

Parameters

mixed $resource The resource
string|null $type The resource type or null if unknown

in ObjectRouteLoader at line line 82
bool supports(mixed $resource, string|null $type = null)

Returns whether this class supports the given resource.

Parameters

mixed $resource A resource
string|null $type The resource type or null if unknown

Return Value

bool True if this class supports the given resource, false otherwise

at line line 32
__construct(ContainerInterface $container)

Parameters

ContainerInterface $container