Methods |
public
|
add(Route $route): Route
Add a Route instance to the collection.
Add a Route instance to the collection.
Implemented by
|
#
|
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.
Implemented by
|
#
|
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.
Implemented by
|
#
|
public
|
match(Request $request): Route
Find the first route matching a given request.
Find the first route matching a given request.
Throws
Implemented by
|
#
|
public
|
get(string|null $method = null): Route[]
Get routes from the collection by method.
Get routes from the collection by method.
Implemented by
|
#
|
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.
Implemented by
|
#
|
public
|
getByName(string $name): Route|null
Get a route instance by its name.
Get a route instance by its name.
Implemented by
|
#
|
public
|
getByAction(string $action): Route|null
Get a route instance by its controller action.
Get a route instance by its controller action.
Implemented by
|
#
|
public
|
getRoutes(): Route[]
Get all of the routes in the collection.
Get all of the routes in the collection.
Implemented by
|
#
|
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.
Implemented by
|
#
|
public
|
getRoutesByName(): Route[]
Get all of the routes keyed by their name.
Get all of the routes keyed by their name.
Implemented by
|
#
|