Commit ab17ea67 authored by Taylor Otwell's avatar Taylor Otwell

fix bug in db profiling.

parent 6e83add7
...@@ -239,7 +239,7 @@ class Connection { ...@@ -239,7 +239,7 @@ class Connection {
{ {
Event::fire('laravel: query', array($sql, $bindings, $time)); Event::fire('laravel: query', array($sql, $bindings, $time));
static::$queries = compact('sql', 'bindings', 'time'); static::$queries[] = compact('sql', 'bindings', 'time');
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment