private function RouteCollection::setParent

Sets the parent RouteCollection. It's only used internally from one RouteCollection to another. It makes no sense to be available as part of the public API.

Parameters

RouteCollection $parent The parent RouteCollection:

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCollection.php, line 295

Class

RouteCollection
A RouteCollection represents a set of Route instances as a tree structure.

Namespace

Symfony\Component\Routing

Code

private function setParent(RouteCollection $parent) {
  $this->parent = $parent;
}