mario-legenda / object-examiner
Recursively shows public methods and properties of an object
1.0.0
2015-10-27 08:44 UTC
Requires (Dev)
- phpunit/phpunit: 4.8.*
This package is auto-updated.
Last update: 2025-03-09 04:01:25 UTC
README
Prints objects public methods. If that object has properties that are also objects, it prints their methods too. Useful if you have an object that is constructed out of a string and you can't find it.
Usage
ObjectExaminer::init()->examine($object);
That is it. It will var_dump
objects methods and kills the script.