| Total Complexity | 2 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class SymfonyVarDumper implements DumperInterface |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * @var VarCloner |
||
| 18 | */ |
||
| 19 | protected $cloner; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var CliDumper |
||
| 23 | */ |
||
| 24 | protected $dumper; |
||
| 25 | |||
| 26 | 1 | public function __construct($flags = CliDumper::DUMP_LIGHT_ARRAY) |
|
| 30 | 1 | } |
|
| 31 | |||
| 32 | 1 | public function dump(array $context) |
|
| 37 |