php-debugbar
php-debugbar copied to clipboard
Debug bar for PHP
Initial commit, created BaseStorage with gc functions, updated the interface. Not really sure what the best place to run the GC would be.. Could be in the OpenHandler->handle() but that...
According to docs, [it's possible to time all PDO calls if this collector is created before TimeData](https://github.com/maximebf/php-debugbar/blob/master/docs/base_collectors.md#pdo). However, the PDO collector is optional on the ["Standard package"](https://github.com/maximebf/php-debugbar#quick-start), while TimeData comes...
I guess that to keep compatibility with PSR-3, there's a `log()` method on the MessageCollector with a third parameter for including contextual details... But it's completely ignored on the class....
I understand its a bit of an undertaking, but I might as well ask. Just implemented Content Security Policy headers on my project today. Turns out, inline-executed javascript is frowned...
In php7 they introduced a new error class, ParseError http://php.net/manual/en/class.parseerror.php. This error type conflicts with the ExceptionsCollector::addException(Exception $e); I have fixed this myself with adding a instanceof check like this:...
Hi. How can I fix this warning: Warning: mb_check_encoding(): Input is something other than scalar or array in /htdocs/vendor/maximebf/debugbar/src/DebugBar/DataCollector/PDO/TracedStatement.php on line 77
i am using mysqli not pdo, how to integrate this with mysqli? i am saving queries in function function dbquery($sql) { $msc = microtime(true); $result = mysqli_query($GLOBALS["link"], $sql); $msc =...
I am using JQeury, and i see that $debugbar->sendDataInHeaders(); return headers for the debug bar in ajax calls. But i dont; see any data from the Ajax calls in de...
Since SwiftMailer v.6, they removed the `newInstance` method. I allowed myself to add the `gitignore` since it was a bit annoying to reset all those files created to make a...
Hi there! Is it possible to add a constructor to `RequestDataCollector` so PSR-15 `ServerRequestInterface` can be used instead of global state? This is very handy while running an app on...