protected function MatcherDumper::lazyLoadItself in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Routing/MatcherDumper.php \Drupal\Core\ProxyClass\Routing\MatcherDumper::lazyLoadItself()
- 9 core/lib/Drupal/Core/ProxyClass/Routing/MatcherDumper.php \Drupal\Core\ProxyClass\Routing\MatcherDumper::lazyLoadItself()
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
3 calls to MatcherDumper::lazyLoadItself()
- MatcherDumper::addRoutes in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ MatcherDumper.php - Adds additional routes to be dumped.
- MatcherDumper::dump in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ MatcherDumper.php - MatcherDumper::getRoutes in core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ MatcherDumper.php
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Routing/ MatcherDumper.php, line 61
Class
- MatcherDumper
- Provides a proxy class for \Drupal\Core\Routing\MatcherDumper.
Namespace
Drupal\Core\ProxyClass\RoutingCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}