You are here

protected function FilterUninstallValidator::lazyLoadItself in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/filter/src/ProxyClass/FilterUninstallValidator.php \Drupal\filter\ProxyClass\FilterUninstallValidator::lazyLoadItself()

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

core/modules/filter/src/ProxyClass/FilterUninstallValidator.php, line 61

Class

FilterUninstallValidator
Provides a proxy class for \Drupal\filter\FilterUninstallValidator.

Namespace

Drupal\filter\ProxyClass

Code

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