You are here

protected function CmsBlogUninstallValidator::lazyLoadItself in Glazed CMS Blog 8

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

src/ProxyClass/CmsBlogUninstallValidator.php, line 61

Class

CmsBlogUninstallValidator
Provides a proxy class for \Drupal\cms_blog\CmsBlogUninstallValidator.

Namespace

Drupal\cms_blog\ProxyClass

Code

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