public function Compiler::__construct

Constructor.

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Compiler/Compiler.php, line 34

Class

Compiler
This class is used to remove circular dependencies between individual passes.

Namespace

Symfony\Component\DependencyInjection\Compiler

Code

public function __construct() {
  $this->passConfig = new PassConfig();
  $this->serviceReferenceGraph = new ServiceReferenceGraph();
  $this->loggingFormatter = new LoggingFormatter();
  $this->log = array();
}