コード例 #1
0
ファイル: Construct.php プロジェクト: jorik041/construct
 /**
  * Initialize an empty git repo.
  *
  * @param JonathanTorres\Construct\Helpers\Git $git
  *
  * @return void
  */
 protected function gitInit(Git $git)
 {
     if ($this->file->isDirectory($this->projectLower)) {
         $git->init($this->projectLower);
     }
 }