You are here

protected function BookUninstallValidator::lazyLoadItself in Drupal 9

Same name and namespace in other branches
  1. 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 61

Class

BookUninstallValidator
Provides a proxy class for \Drupal\book\BookUninstallValidator.

Namespace

Drupal\book\ProxyClass

Code

protected function lazyLoadItself() {
  if (!isset($this->service)) {
    $this->service = $this->container
      ->get($this->drupalProxyOriginalServiceId);
  }
  return $this->service;
}