protected function ViewUIConverter::lazyLoadItself in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views_ui/src/ProxyClass/ParamConverter/ViewUIConverter.php \Drupal\views_ui\ProxyClass\ParamConverter\ViewUIConverter::lazyLoadItself()
- 10 core/modules/views_ui/src/ProxyClass/ParamConverter/ViewUIConverter.php \Drupal\views_ui\ProxyClass\ParamConverter\ViewUIConverter::lazyLoadItself()
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
File
- core/
modules/ views_ui/ src/ ProxyClass/ ParamConverter/ ViewUIConverter.php, line 61
Class
- ViewUIConverter
- Provides a proxy class for \Drupal\views_ui\ParamConverter\ViewUIConverter.
Namespace
Drupal\views_ui\ProxyClass\ParamConverterCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}