/** * Provides a list of the tags in this project. */ public function DNTagList() { if ($this->CVSPath && !$this->repoExists()) { $this->cloneRepo(); } return DNReferenceList::create($this, $this->DNData(), null, null, true); }
public static function set_refs_dir($refsDir) { self::$refs_dir = $refsDir; }
/** * Provides a DNBuildList of builds found in this project. */ public function DNBuildList() { $blockBranch = $this->branch->getName() == 'master' ? null : 'master'; return DNReferenceList::create($this->project, $this->data, $this->branch, $blockBranch); }