github.php 401 B

12345678910111213141516171819
  1. <?php namespace Laravel\CLI\Tasks\Bundle\Providers; use Laravel\Request;
  2. class Github extends Provider {
  3. /**
  4. * Install the given bundle into the application.
  5. *
  6. * @param string $bundle
  7. * @param string $path
  8. * @return void
  9. */
  10. public function install($bundle, $path)
  11. {
  12. $url = "http://github.com/{$bundle['location']}/zipball/master";
  13. parent::zipball($url, $bundle, $path);
  14. }
  15. }