Example #1
0
 public function pullTimer()
 {
     Dog_Log::debug('DOGMOD_CVS::pullTimer()');
     if ($this->pulling) {
     } elseif (false === ($repo = Dog_Repo::table('Dog_Repo')->selectFirstObject('*', "repo_id > {$this->pull_cycle_num}"))) {
         $this->pull_cycle_num = 0;
     } else {
         $this->pull_cycle_num = $repo->getID();
         $this->doPull($repo);
     }
 }