protected function BatchStorage::lazyLoadItself in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage::lazyLoadItself()
- 9 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage::lazyLoadItself()
Lazy loads the real service from the container.
Return value
object Returns the constructed real service.
6 calls to BatchStorage::lazyLoadItself()
- BatchStorage::cleanup in core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php - Cleans up failed or old batches.
- BatchStorage::create in core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php - Creates and saves a batch.
- BatchStorage::delete in core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php - Deletes a batch.
- BatchStorage::load in core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php - Loads a batch.
- BatchStorage::schemaDefinition in core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php, line 61
Class
- BatchStorage
- Provides a proxy class for \Drupal\Core\Batch\BatchStorage.
Namespace
Drupal\Core\ProxyClass\BatchCode
protected function lazyLoadItself() {
if (!isset($this->service)) {
$this->service = $this->container
->get($this->drupalProxyOriginalServiceId);
}
return $this->service;
}