You are here

public function DumpListener::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/EventListener/DumpListener.php \Symfony\Component\HttpKernel\EventListener\DumpListener::__construct()

Parameters

ClonerInterface $cloner Cloner service.:

DataDumperInterface $dumper Dumper service.:

File

vendor/symfony/http-kernel/EventListener/DumpListener.php, line 34

Class

DumpListener
Configures dump() handler.

Namespace

Symfony\Component\HttpKernel\EventListener

Code

public function __construct(ClonerInterface $cloner, DataDumperInterface $dumper) {
  $this->cloner = $cloner;
  $this->dumper = $dumper;
}