Security update for Core, with self-updated composer
[yaffs-website] / vendor / symfony / http-kernel / EventListener / DumpListener.php
1 <?php
2
3 /*
4  * This file is part of the Symfony package.
5  *
6  * (c) Fabien Potencier <fabien@symfony.com>
7  *
8  * For the full copyright and license information, please view the LICENSE
9  * file that was distributed with this source code.
10  */
11
12 namespace Symfony\Component\HttpKernel\EventListener;
13
14 use Symfony\Component\Console\ConsoleEvents;
15 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
16 use Symfony\Component\VarDumper\Cloner\ClonerInterface;
17 use Symfony\Component\VarDumper\Dumper\DataDumperInterface;
18 use Symfony\Component\VarDumper\VarDumper;
19
20 /**
21  * Configures dump() handler.
22  *
23  * @author Nicolas Grekas <p@tchwork.com>
24  */
25 class DumpListener implements EventSubscriberInterface
26 {
27     private $cloner;
28     private $dumper;
29
30     /**
31      * @param ClonerInterface     $cloner Cloner service
32      * @param DataDumperInterface $dumper Dumper service
33      */
34     public function __construct(ClonerInterface $cloner, DataDumperInterface $dumper)
35     {
36         $this->cloner = $cloner;
37         $this->dumper = $dumper;
38     }
39
40     public function configure()
41     {
42         $cloner = $this->cloner;
43         $dumper = $this->dumper;
44
45         VarDumper::setHandler(function ($var) use ($cloner, $dumper) {
46             $dumper->dump($cloner->cloneVar($var));
47         });
48     }
49
50     public static function getSubscribedEvents()
51     {
52         if (!class_exists(ConsoleEvents::class)) {
53             return array();
54         }
55
56         // Register early to have a working dump() as early as possible
57         return array(ConsoleEvents::COMMAND => array('configure', 1024));
58     }
59 }