Beispiel #1
0
 /**
  * get stats for this tracker
  *
  * @return array
  */
 public function getStats()
 {
     if (!isset($this->cache_stats)) {
         $dao = new Tracker_ArtifactDao();
         $this->cache_stats = $dao->searchStatsForTracker($this->id)->getRow();
     }
     return $this->cache_stats;
 }