AppServiceProvider.php 531 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\ServiceProvider;
  4. class AppServiceProvider extends ServiceProvider
  5. {
  6. /**
  7. * All of the container bindings that should be registered.
  8. *
  9. * @var array
  10. */
  11. public $bindings = [
  12. // Add bindings here...
  13. ];
  14. /**
  15. * Register any application services.
  16. */
  17. public function register(): void
  18. {
  19. //
  20. }
  21. /**
  22. * Bootstrap any application services.
  23. */
  24. public function boot(): void
  25. {
  26. //
  27. }
  28. }