Ejemplo n.º 1
0
 public function addRun($runName)
 {
     if (!array_key_exists($runName, $this->runs)) {
         $run = Run::statement()->select('*')->where('? = ?', Run::columns()->name, $runName)->query()->fetchRow();
         $this->runs[$runName] = $run;
         $this->runIds[] = Run::cast($run)->id;
     }
 }