You are here

public function ListCommand::__construct in Devel 8.2

Same name and namespace in other branches
  1. 8.3 webprofiler/src/ProxyClass/Command/ListCommand.php \Drupal\webprofiler\ProxyClass\Command\ListCommand::__construct()
  2. 8 webprofiler/src/ProxyClass/Command/ListCommand.php \Drupal\webprofiler\ProxyClass\Command\ListCommand::__construct()
  3. 4.x webprofiler/src/ProxyClass/Command/ListCommand.php \Drupal\webprofiler\ProxyClass\Command\ListCommand::__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

webprofiler/src/ProxyClass/Command/ListCommand.php, line 50

Class

ListCommand
Provides a proxy class for \Drupal\webprofiler\Command\ListCommand.

Namespace

Drupal\webprofiler\ProxyClass\Command

Code

public function __construct(\Symfony\Component\DependencyInjection\ContainerInterface $container, $drupal_proxy_original_service_id) {
  $this->container = $container;
  $this->drupalProxyOriginalServiceId = $drupal_proxy_original_service_id;
}