r-berto811/symfony-debug

Commands for comfortable development

1.0.3 2017-10-05 09:08 UTC

This package is not auto-updated.

Last update: 2024-04-17 20:13:36 UTC


README

dd and dump functions

    $array = [1, 2, 'str'];

    $obj = new \StdClass();

    dump(1, $array, $obj);

    dd(1, $array, $obj);