Methods |
protected
|
handleMatchedRoute(Request $request, Route|null $route): Route
Handle the matched route.
Handle the matched route.
Throws
|
#
|
protected
|
checkForAlternateVerbs(Request $request): array
Determine if any routes match on another HTTP verb.
Determine if any routes match on another HTTP verb.
|
#
|
protected
|
matchAgainstRoutes(Route[] $routes, Request $request, bool $includingMethod = true): Route|null
Determine if a route in the array matches the request.
Determine if a route in the array matches the request.
|
#
|
protected
|
getRouteForMethods(Request $request, string[] $methods): Route
Get a route (if necessary) that responds when other available methods are present.
Get a route (if necessary) that responds when other available methods are present.
Throws
|
#
|
protected
|
requestMethodNotAllowed(Request $request, array $others, string $method): never
Throw a method not allowed HTTP exception.
Throw a method not allowed HTTP exception.
Throws
|
#
|
protected
|
methodNotAllowed(array $others, string $method): void
Throw a method not allowed HTTP exception.
Throw a method not allowed HTTP exception.
Deprecated
use requestMethodNotAllowed
Throws
|
#
|
public
|
compile(): array
Compile the routes for caching.
Compile the routes for caching.
|
#
|
public
|
dumper(): CompiledUrlMatcherDumper
Return the CompiledUrlMatcherDumper instance for the route collection.
Return the CompiledUrlMatcherDumper instance for the route collection.
|
#
|
public
|
toSymfonyRouteCollection(): RouteCollection
Convert the collection to a Symfony RouteCollection instance.
Convert the collection to a Symfony RouteCollection instance.
Overriden by
|
#
|
protected
|
addToSymfonyRoutesCollection(RouteCollection $symfonyRoutes, Route $route): RouteCollection
Add a route to the SymfonyRouteCollection instance.
Add a route to the SymfonyRouteCollection instance.
Throws
|
#
|
protected
|
generateRouteName(): string
Get a randomly generated route name.
Get a randomly generated route name.
|
#
|
public
|
getIterator(): ArrayIterator
Get an iterator for the items.
Get an iterator for the items.
Implements
|
#
|
public
|
count(): int
Count the number of items in the collection.
Count the number of items in the collection.
Implements
|
#
|