public function CompiledRoute::getPattern

Returns the pattern.

Return value

string The pattern.

File

drupal/core/lib/Drupal/Core/Routing/CompiledRoute.php, line 142
Definition of Drupal\Core\Routing\CompiledRoute.

Class

CompiledRoute
A compiled route contains derived information from a route object.

Namespace

Drupal\Core\Routing

Code

public function getPattern() {
  return $this->route
    ->getPattern();
}