AppServiceProvider.php 390 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Arr;
  4. use Illuminate\Support\ServiceProvider;
  5. class AppServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * Register any application services.
  9. */
  10. public function register(): void
  11. {
  12. //
  13. }
  14. /**
  15. * Bootstrap any application services.
  16. */
  17. public function boot(): void
  18. {
  19. //
  20. }
  21. }