You are here

protected function CourierChannelConverter::lazyLoadItself in Courier 2.x

Same name and namespace in other branches
  1. 8 src/ProxyClass/ParamConverter/CourierChannelConverter.php \Drupal\courier\ProxyClass\ParamConverter\CourierChannelConverter::lazyLoadItself()

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

src/ProxyClass/ParamConverter/CourierChannelConverter.php, line 64
Contains \Drupal\courier\ProxyClass\ParamConverter\CourierChannelConverter.

Class

CourierChannelConverter
Provides a proxy class for \Drupal\courier\ParamConverter\CourierChannelConverter.

Namespace

Drupal\courier\ProxyClass\ParamConverter

Code

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