provider.php 222 B

12345678910111213
  1. <?php namespace Laravel\CLI\Tasks\Bundle\Providers;
  2. interface Provider {
  3. /**
  4. * Install the given bundle into the application.
  5. *
  6. * @param string $bundle
  7. * @return void
  8. */
  9. public function install($bundle);
  10. }