AppServiceProvider.php 551 B

12345678910111213141516171819202122232425262728293031
  1. <?php namespace Providers;
  2. use Illuminate\Support\ServiceProvider;
  3. class AppServiceProvider extends ServiceProvider {
  4. /**
  5. * Bootstrap any necessary services.
  6. *
  7. * @return void
  8. */
  9. public function boot()
  10. {
  11. //
  12. }
  13. /**
  14. * Register the service provider.
  15. *
  16. * @return void
  17. */
  18. public function register()
  19. {
  20. // This service provider is a convenient place to register your services
  21. // in the IoC container. If you wish, you may make additional methods
  22. // or service providers to keep the code more focused and granular.
  23. //
  24. }
  25. }