task(SvnStack::class, $username, $password, $pathToSvn); } /** * @param string $pathToGit * * @return \Robo\Task\Vcs\GitStack */ protected function taskGitStack($pathToGit = 'git') { return $this->task(GitStack::class, $pathToGit); } /** * @param string $pathToHg * * @return \Robo\Task\Vcs\HgStack */ protected function taskHgStack($pathToHg = 'hg') { return $this->task(HgStack::class, $pathToHg); } }