Exemplo n.º 1
0
 /**
  * @return string
  */
 public function getStatus()
 {
     $this->__lastResult = $this->wrapper->execute('status', ['s'], [], $this->directoy);
     return $this->__lastResult;
 }
Exemplo n.º 2
0
 /**
  * Returns the output of a `git status -s` command.
  *
  * @return string
  *
  * @throws GitException
  */
 public function getStatus()
 {
     return $this->wrapper->git('status -s', $this->directory);
 }