Ejemplo n.º 1
0
 /**
  * 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);
     });
 }
Ejemplo n.º 2
0
 /**
  * Fork Laravel onto the user's Github account.
  *
  * @return void
  */
 protected function forkLaravel()
 {
     $this->task('Forking Laravel...', function () {
         $this->github->fork('laravel', 'laravel');
     });
 }