You are here

protected function FieldModuleUninstallValidator::lazyLoadItself in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/ProxyClass/Field/FieldModuleUninstallValidator.php \Drupal\Core\ProxyClass\Field\FieldModuleUninstallValidator::lazyLoadItself()

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

core/lib/Drupal/Core/ProxyClass/Field/FieldModuleUninstallValidator.php, line 65
Contains \Drupal\Core\ProxyClass\Field\FieldModuleUninstallValidator.

Class

FieldModuleUninstallValidator
Provides a proxy class for \Drupal\Core\Field\FieldModuleUninstallValidator.

Namespace

Drupal\Core\ProxyClass\Field

Code

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