Esempio n. 1
0
 /**
  * Get runs within x # of days. /
  */
 public function getRuns()
 {
     // Get all the test runs
     // Sort in descending order by id
     $runs = new \App\Run();
     return $runs->getRunsWithinXDays(90);
 }