Inheritance: implements TQ\Vcs\Repository\RepositoryInterface
Example #1
0
 /**
  * Creates a new repository instance - use {@see open()} instead
  *
  * @param   string     $repositoryPath
  * @param   Binary     $git
  */
 protected function __construct($repositoryPath, Binary $git)
 {
     $this->git = $git;
     parent::__construct($repositoryPath);
 }
 /**
  * Creates a new repository instance - use {@see open()} instead
  *
  * @param   string     $repositoryPath
  * @param   Binary     $svn
  */
 protected function __construct($repositoryPath, Binary $svn)
 {
     $this->svn = $svn;
     parent::__construct($repositoryPath);
 }