Methods |
public
|
add(Route $route): Route
Add a Route instance to the collection.
Add a Route instance to the collection.
Implements
|
#
|
protected
|
addToCollections(Route $route): void
Add the given route to the arrays of routes.
Add the given route to the arrays of routes.
|
#
|
protected
|
addLookups(Route $route): void
Add the route to any look-up tables if necessary.
Add the route to any look-up tables if necessary.
|
#
|
protected
|
addToActionList(array $action, Route $route): void
Add a route to the controller action dictionary.
Add a route to the controller action dictionary.
|
#
|
public
|
refreshNameLookups(): void
Refresh the name look-up table.
Refresh the name look-up table.
This is done in case any names are fluently defined or if routes are overwritten.
Implements
|
#
|
public
|
refreshActionLookups(): void
Refresh the action look-up table.
Refresh the action look-up table.
This is done in case any actions are overwritten with new controllers.
Implements
|
#
|
public
|
match(Request $request): Route
Find the first route matching a given request.
Find the first route matching a given request.
Throws
Implements
|
#
|
public
|
get(string|null $method = null): Route[]
Get routes from the collection by method.
Get routes from the collection by method.
Implements
|
#
|
public
|
hasNamedRoute(string $name): bool
Determine if the route collection contains a given named route.
Determine if the route collection contains a given named route.
Implements
|
#
|
public
|
getByName(string $name): Route|null
Get a route instance by its name.
Get a route instance by its name.
Implements
|
#
|
public
|
getByAction(string $action): Route|null
Get a route instance by its controller action.
Get a route instance by its controller action.
Implements
|
#
|
public
|
getRoutes(): Route[]
Get all of the routes in the collection.
Get all of the routes in the collection.
Implements
|
#
|
public
|
getRoutesByMethod(): array
Get all of the routes keyed by their HTTP verb / method.
Get all of the routes keyed by their HTTP verb / method.
Implements
|
#
|
public
|
getRoutesByName(): Route[]
Get all of the routes keyed by their name.
Get all of the routes keyed by their name.
Implements
|
#
|
public
|
toSymfonyRouteCollection(): RouteCollection
Convert the collection to a Symfony RouteCollection instance.
Convert the collection to a Symfony RouteCollection instance.
Overrides
|
#
|
public
|
toCompiledRouteCollection(Router $router, Container $container): CompiledRouteCollection
Convert the collection to a CompiledRouteCollection instance.
Convert the collection to a CompiledRouteCollection instance.
|
#
|