| Total Complexity | 2 | 
| Total Lines | 21 | 
| Duplicated Lines | 0 % | 
| 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 | public function __construct($flags = CliDumper::DUMP_LIGHT_ARRAY) | ||
| 30 | } | ||
| 31 | |||
| 32 | public function dump(array $context) | ||
| 37 |