function CompiledRoute::__unserialize
Same name in this branch
- 11.1.x core/lib/Drupal/Core/Routing/CompiledRoute.php \Drupal\Core\Routing\CompiledRoute::__unserialize()
3 calls to CompiledRoute::__unserialize()
- CompiledRoute::unserialize in vendor/
symfony/ routing/ CompiledRoute.php - @internal
- CompiledRoute::__unserialize in core/
lib/ Drupal/ Core/ Routing/ CompiledRoute.php - CompiledRoute::__unserialize in core/
lib/ Drupal/ Core/ Routing/ CompiledRoute.php
1 method overrides CompiledRoute::__unserialize()
- CompiledRoute::__unserialize in core/
lib/ Drupal/ Core/ Routing/ CompiledRoute.php
File
-
vendor/
symfony/ routing/ CompiledRoute.php, line 65
Class
- CompiledRoute
- CompiledRoutes are returned by the RouteCompiler class.
Namespace
Symfony\Component\RoutingCode
public function __unserialize(array $data) : void {
$this->variables = $data['vars'];
$this->staticPrefix = $data['path_prefix'];
$this->regex = $data['path_regex'];
$this->tokens = $data['path_tokens'];
$this->pathVariables = $data['path_vars'];
$this->hostRegex = $data['host_regex'];
$this->hostTokens = $data['host_tokens'];
$this->hostVariables = $data['host_vars'];
}