コード例 #1
0
ファイル: CreateLiferaft.php プロジェクト: cpass78/liferaft
 /**
  * Fork Laravel onto the user's Github account.
  *
  * @return void
  */
 protected function forkLaravel()
 {
     $this->task('Forking Laravel...', function () {
         $this->github->fork(TARGET_OWNER, TARGET_REPOSITORY);
     });
 }
コード例 #2
0
ファイル: CreateLiferaft.php プロジェクト: danharper/liferaft
 /**
  * Fork Laravel onto the user's Github account.
  *
  * @return void
  */
 protected function forkLaravel()
 {
     $this->task('Forking Laravel...', function () {
         $this->github->fork('laravel', 'laravel');
     });
 }