You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
Dropped support for PHP 7.1 and Symfony 3.4 and 4.3.
Added support for Symfony 5.
Deprecated passing a route object (or anything else that is not a string) as
the $name parameter in the generate method of the ChainRouter and the
DynamicRouter. Symfony 5 enforces the $name parameter to be a string with
static type declaration.
The future proof way to generate a route from an object is to use the route
name RouteObjectInterface::OBJECT_BASED_ROUTE_NAME (cmf_routing_object)
and pass the route object in the parameters with key RouteObjectInterface::ROUTE_OBJECT (_route_object).
The VersatileGeneratorInterface::supports method is deprecated as it was used
to avoid errors with routers not supporting objects in $name.