public function RouteCollection::getPrefix

Returns the prefix that may contain placeholders.

Return value

string The prefix

1 call to RouteCollection::getPrefix()
RouteCollection::addCollection in drupal/core/vendor/symfony/routing/Symfony/Component/Routing/RouteCollection.php
Adds a route collection to the current set of routes (at the end of the current set).

File

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

Class

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

Namespace

Symfony\Component\Routing

Code

public function getPrefix() {
  return $this->prefix;
}