Merge pull request #1663 from neoascetic/anbu_fix
Fix bug in ANBU that cause wrong total time showing on SQL tab
This commit is contained in:
@@ -309,7 +309,7 @@ class Connection {
|
||||
*/
|
||||
protected function log($sql, $bindings, $start)
|
||||
{
|
||||
$time = number_format((microtime(true) - $start) * 1000, 2);
|
||||
$time = (microtime(true) - $start) * 1000;
|
||||
|
||||
Event::fire('laravel.query', array($sql, $bindings, $time));
|
||||
|
||||
|
||||
Reference in New Issue
Block a user