public function CompiledRoute::getRegex

Same name in this branch
  1. 9.x drupal/core/lib/Drupal/Core/Routing/CompiledRoute.php \Drupal\Core\Routing\CompiledRoute::getRegex()
  2. 9.x drupal/core/vendor/symfony/routing/Symfony/Component/Routing/CompiledRoute.php \Symfony\Component\Routing\CompiledRoute::getRegex()

Returns the regex.

Return value

string The regex

File

drupal/core/vendor/symfony/routing/Symfony/Component/Routing/CompiledRoute.php, line 57

Class

CompiledRoute
CompiledRoutes are returned by the RouteCompiler class.

Namespace

Symfony\Component\Routing

Code

public function getRegex() {
  return $this->regex;
}