You are here

protected function BatchStorage::lazyLoadItself in Drupal 10

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage::lazyLoadItself()
  2. 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

... See full list

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\Batch

Code

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