protected function RouteBuilder::lazyLoadItself in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Routing/RouteBuilder.php \Drupal\Core\ProxyClass\Routing\RouteBuilder::lazyLoadItself()
- 9 core/lib/Drupal/Core/ProxyClass/Routing/RouteBuilder.php \Drupal\Core\ProxyClass\Routing\RouteBuilder::lazyLoadItself()
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
4 calls to RouteBuilder::lazyLoadItself()
- RouteBuilder::destruct in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ RouteBuilder.php - Performs destruct operations.
- RouteBuilder::rebuild in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ RouteBuilder.php - Rebuilds the route information and dumps it.
- RouteBuilder::rebuildIfNeeded in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ RouteBuilder.php - Rebuilds the route information if necessary, and dumps it.
- RouteBuilder::setRebuildNeeded in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ RouteBuilder.php - Sets the router to be rebuilt next time rebuildIfNeeded() is called.
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ RouteBuilder.php, line 61
Class
- RouteBuilder
- Provides a proxy class for \Drupal\Core\Routing\RouteBuilder.
Namespace
Drupal\Core\ProxyClass\RoutingCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}