php-debugbar
php-debugbar copied to clipboard
Debug bar for PHP
I originally reported this in barryvdh/laravel-debugbar#417 but I see that the problem is actually in php-debugbar. Storage data is being stored in a single key as a Redis hash (HSET),...
to prevent big mess with user defined css, you could add `display:block;` in css files. For example here : https://github.com/maximebf/php-debugbar/blob/master/src/DebugBar/Resources/widgets.css#L142 ```css dl.phpdebugbar-widgets-kvlist dd { margin-left: 160px; padding: 5px; border-top: 1px...
PHP 8.1 has depreciated mismatched return types on method overloads. I added appropriate return types when they were compatible with 7.1, and #[\ReturnTypeWillChange] where mixed types were returned, which are...
running a quick test of latest 8.1 RC ``` php -v PHP 8.1.0RC3 (cli) (built: Sep 28 2021 21:40:07) (NTS gcc x86_64) Copyright (c) The PHP Group Zend Engine v4.1.0RC3,...
In PHP8.1, htmlentities doesn't accept null as valid first argument; cast any equivalent-to-false into string before passing it to htmlentities.
> Yes @Tsdjimmy : I recently upgraded my PHP version from PHP7 to PHP8.. What is its solution..? **previous update composer Run composer update. Let me know if it worked....
Dynamic properties are deprecated in PHP 8.2 and will be removed in PHP 9.0. This PR fixes a deprecation error on the `DebugBar/DataFormatter/DataFormatter` class where two dynamic name properties are...
In monolog 3, write method now accepts a LogRecord object (https://github.com/Seldaek/monolog/commit/22c8b19358e916c52f1d2170d44e172152de7c25) instead of an array. The PR makes the debugbar collector compatible with that signature.
In my application, I noticed that on seemingly random occurrences, parameters would be repeated when replacing them in the SQL query string: (notice that they display fine in the table...
I've read the docs, but in my project what happens is, that the following code just adds an additional DebugBar: ```javascript var debugbar = new PhpDebugBar.DebugBar(); debugbar.createIndicator('dbhost', 'cogs', 'connected db',...