public function BatchStorage::__construct in Drupal 8
Same name in this branch
- 8 core/lib/Drupal/Core/Batch/BatchStorage.php \Drupal\Core\Batch\BatchStorage::__construct()
- 8 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage::__construct()
Same name and namespace in other branches
- 9 core/lib/Drupal/Core/ProxyClass/Batch/BatchStorage.php \Drupal\Core\ProxyClass\Batch\BatchStorage::__construct()
Constructs a ProxyClass Drupal proxy object.
Parameters
\Symfony\Component\DependencyInjection\ContainerInterface $container: The container.
string $drupal_proxy_original_service_id: The service ID of the original service.
File
- core/
lib/ Drupal/ Core/ ProxyClass/ Batch/ BatchStorage.php, line 49
Class
- BatchStorage
- Provides a proxy class for \Drupal\Core\Batch\BatchStorage.
Namespace
Drupal\Core\ProxyClass\BatchCode
public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id) {
$this->container = $container;
$this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
}