1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-07-23 17:51:56 +02:00

Fix #790 - Slow threshold highlight on queries (#792)

This commit is contained in:
angeljqv
2025-07-22 09:01:30 -05:00
committed by GitHub
parent 86eb2323a2
commit 3146d04671

View File

@@ -64,7 +64,7 @@ class PDOCollector extends DataCollector implements Renderable, AssetProvider
*/
public function setSlowThreshold($threshold)
{
$this->slowThreshold = $threshold;
$this->slowThreshold = $threshold / 1000;
}
/**