You are here

public function MatcherDumper::__construct in Zircon Profile 8

Same name in this branch
  1. 8 vendor/symfony/routing/Matcher/Dumper/MatcherDumper.php \Symfony\Component\Routing\Matcher\Dumper\MatcherDumper::__construct()
  2. 8 core/lib/Drupal/Core/Routing/MatcherDumper.php \Drupal\Core\Routing\MatcherDumper::__construct()
  3. 8 core/lib/Drupal/Core/ProxyClass/Routing/MatcherDumper.php \Drupal\Core\ProxyClass\Routing\MatcherDumper::__construct()
Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/ProxyClass/Routing/MatcherDumper.php \Drupal\Core\ProxyClass\Routing\MatcherDumper::__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/Routing/MatcherDumper.php, line 53
Contains \Drupal\Core\ProxyClass\Routing\MatcherDumper.

Class

MatcherDumper
Provides a proxy class for \Drupal\Core\Routing\MatcherDumper.

Namespace

Drupal\Core\ProxyClass\Routing

Code

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