protected function RoleAssignUninstallValidator::lazyLoadItself in RoleAssign 8
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
File
- src/
ProxyClass/ RoleAssignUninstallValidator.php, line 61
Class
- RoleAssignUninstallValidator
- Provides a proxy class for \Drupal\roleassign\RoleAssignUninstallValidator.
Namespace
Drupal\roleassign\ProxyClassCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}