You are here

protected function HttpblLogTrapper::lazyLoadItself in http:BL 8

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

src/ProxyClass/Logger/HttpblLogTrapper.php, line 66

Class

HttpblLogTrapper
Provides a proxy class for \Drupal\httpbl\Logger\HttpblLogTrapper.

Namespace

Drupal\httpbl\ProxyClass\Logger

Code

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