kint debugging tool.

I have found kint and added it as an external library to Scriptcase… I really like it with one strange side effect…

https://kint-php.github.io/kint/

When I call Kint it outputs the data in my variable or object, etc… but it does not include the object name itself… all objects are named $0 instead of the variable or array name that I called it with. So if I issue d($myarray); the kint output shows: array (6) instead of the name of the array and its length like: $myarray array(6) as I expect it to.

any ideas whats happening?