Esempio n. 1
0
 /**
  * @Given I commit :message
  */
 public function iCommit($message)
 {
     $this->repo->stage();
     $this->repo->commit($message);
 }
 /**
  * @param string $filePath
  */
 public function stageFile($filePath)
 {
     $this->repository->stage($filePath);
 }