Example #1
0
 public function startTracker($reset = false)
 {
     if ($this->sqlTracker == null) {
         $this->sqlTracker = new Diag\SqlTracker();
     }
     if ($reset) {
         $this->sqlTracker->reset();
     }
     $this->trackSql = true;
 }