You are here

protected function ForumUninstallValidator::lazyLoadItself in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/forum/src/ProxyClass/ForumUninstallValidator.php \Drupal\forum\ProxyClass\ForumUninstallValidator::lazyLoadItself()
  2. 9 core/modules/forum/src/ProxyClass/ForumUninstallValidator.php \Drupal\forum\ProxyClass\ForumUninstallValidator::lazyLoadItself()

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

2 calls to ForumUninstallValidator::lazyLoadItself()
ForumUninstallValidator::setStringTranslation in core/modules/forum/src/ProxyClass/ForumUninstallValidator.php
ForumUninstallValidator::validate in core/modules/forum/src/ProxyClass/ForumUninstallValidator.php
Determines the reasons a module can not be uninstalled.

File

core/modules/forum/src/ProxyClass/ForumUninstallValidator.php, line 61

Class

ForumUninstallValidator
Provides a proxy class for \Drupal\forum\ForumUninstallValidator.

Namespace

Drupal\forum\ProxyClass

Code

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