예제 #1
0
파일: svn.php 프로젝트: sdboyer/svnlib
 public function __construct($path, SvnCommandConfig $config = NULL, $verify = TRUE)
 {
     if ($verify) {
         $this->verify($path);
     }
     parent::__construct($path);
     $this->config = is_null($config) ? new SvnCommandConfig() : $config;
     $this->config->attachWrapper($this);
     $this->getInfo();
 }