I'm developing some REST APIS and the dump function stopped working in my dev env, it doesn't show any information about anything or return the usual output
I tried to debug using the dump() function (from the /vendor/symfony/var-dumper/Resources/functions/dump.php file) and the \Symfony\Component\VarDumper\VarDumper::dump() function with the same results: it doesn't show anything or throw a php exception.
Also, i've tried both: use the regular debug commands (i.e bin/console config:dump-reference) and reinstall the debug-bundle
In this example my program returns a notification: Array to string conversion
$foo = array("asdads", "czxcxzc");
dump($foo);
In this other example the response is null
$foo = "bar";
dump($foo);
I just need the regular output for this function: is really useful to debug and see whats going on with my program
config/packages/debug.yaml
file? if so, please post it – Arleigh Hix