You are here

protected function ModuleInstaller::lazyLoadItself in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php \Drupal\Core\ProxyClass\Extension\ModuleInstaller::lazyLoadItself()
  2. 9 core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php \Drupal\Core\ProxyClass\Extension\ModuleInstaller::lazyLoadItself()

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

4 calls to ModuleInstaller::lazyLoadItself()
ModuleInstaller::addUninstallValidator in core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php
Adds a module uninstall validator.
ModuleInstaller::install in core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php
Installs a given list of modules.
ModuleInstaller::uninstall in core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php
Uninstalls a given list of modules.
ModuleInstaller::validateUninstall in core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php
Determines whether a list of modules can be uninstalled.

File

core/lib/Drupal/Core/ProxyClass/Extension/ModuleInstaller.php, line 61

Class

ModuleInstaller
Provides a proxy class for \Drupal\Core\Extension\ModuleInstaller.

Namespace

Drupal\Core\ProxyClass\Extension

Code

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