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 has been 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.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Currently is is necessary to instantiate the
UriContextCollection
before using the RoutingAuto system: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.
The text was updated successfully, but these errors were encountered: