modified Profiler to clear queries array on start()

This commit is contained in:
Anton Grebnev
2012-10-05 19:39:45 +04:00
parent 5bc65513eb
commit 774c86acd2
2 changed files with 4 additions and 2 deletions

View File

@ -59,6 +59,7 @@ class Profiler
public function start()
{
$this->queries = array();
$this->start = microtime(true);
}