dobrik/extended-dumper

Symfony var dumper with extended data.

1.2.2 2022-05-26 08:44 UTC

This package is auto-updated.

Last update: 2024-05-26 13:21:59 UTC


README

Extended dumper, show detailed information about object

Information

Dump contains:

- line where dump called
- file where dump called
- dumped variable or object detailed information
- parent class of object
- class public methods with arguments

Basically uses Symfony var-dumper https://github.com/symfony/var-dumper

Using

For dump any variable or few variables use short function ff.

ff($var);

And you'll see something like this Scheme

Or

ff($var1, $var2);

In this case your variables will be dumped as array and methods don't be shown.