You are here

public function Dumper::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Dumper/Dumper.php \Symfony\Component\DependencyInjection\Dumper\Dumper::__construct()

Constructor.

Parameters

ContainerBuilder $container The service container to dump:

1 call to Dumper::__construct()
PhpDumper::__construct in vendor/symfony/dependency-injection/Dumper/PhpDumper.php
Constructor.
1 method overrides Dumper::__construct()
PhpDumper::__construct in vendor/symfony/dependency-injection/Dumper/PhpDumper.php
Constructor.

File

vendor/symfony/dependency-injection/Dumper/Dumper.php, line 30

Class

Dumper
Dumper is the abstract class for all built-in dumpers.

Namespace

Symfony\Component\DependencyInjection\Dumper

Code

public function __construct(ContainerBuilder $container) {
  $this->container = $container;
}