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
{{ message }}
This repository was archived by the owner on Sep 16, 2021. It is now read-only.
Currently is is necessary to instantiate the UriContextCollection before using the RoutingAuto system:
$uriContextCollection = newUriContextCollection($document);
$arm->buildUriContextCollection($uriContextCollection);
foreach ($uriContextCollection->getUriContexts() as$context) {
$autoRoute = $uriContext->getAutoRoute();
// save auto route
}
But this causes potential BC breaks in the future as the URIContextCollection class is going to
be present in third-party code. It should be contained within the manager.