Beispiel #1
0
 /**
  * Get the status of the working copy
  *
  * @param  string                              $path
  * @return \Webcreate\Vcs\Common\VcsFileInfo[]
  */
 public function status($path = null)
 {
     $args = array();
     if (null !== $path) {
         $args[] = $path;
     }
     return $this->svn->execute('status', $args, $this->cwd);
 }