You are here

public function CompiledRoute::getHostRegex in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/routing/CompiledRoute.php \Symfony\Component\Routing\CompiledRoute::getHostRegex()

Returns the host regex.

Return value

string|null The host regex or null

File

vendor/symfony/routing/CompiledRoute.php, line 112

Class

CompiledRoute
CompiledRoutes are returned by the RouteCompiler class.

Namespace

Symfony\Component\Routing

Code

public function getHostRegex() {
  return $this->hostRegex;
}