protected function DumperCollection::getParent

Returns the parent collection.

Return value

DumperCollection|null The parent collection or null if the collection has no parent

1 call to DumperCollection::getParent()
DumperPrefixCollection::addPrefixRoute in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/Dumper/DumperPrefixCollection.php
Adds a route in the tree.

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/Matcher/Dumper/DumperCollection.php, line 99

Class

DumperCollection
Collection of routes.

Namespace

Symfony\Component\Routing\Matcher\Dumper

Code

protected function getParent() {
  return $this->parent;
}