protected function BookUninstallValidator::lazyLoadItself in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/book/src/ProxyClass/BookUninstallValidator.php \Drupal\book\ProxyClass\BookUninstallValidator::lazyLoadItself()
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
File
- core/
modules/ book/ src/ ProxyClass/ BookUninstallValidator.php, line 65 - Contains \Drupal\book\ProxyClass\BookUninstallValidator.
Class
- BookUninstallValidator
- Provides a proxy class for \Drupal\book\BookUninstallValidator.
Namespace
Drupal\book\ProxyClassCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}