function ListCommand::lazyLoadItself

Lazy loads the real service from the container.

Return value

object Returns the constructed real service.

File

webprofiler/src/ProxyClass/Command/ListCommand.php, line 61

Class

ListCommand
Provides a proxy class for \Drupal\webprofiler\Command\ListCommand.

Namespace

Drupal\webprofiler\ProxyClass\Command

Code

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