EventServiceProvider.php 516 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace App\Providers;
  3. use Illuminate\Support\Facades\Event;
  4. use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider;
  5. class EventServiceProvider extends ServiceProvider
  6. {
  7. /**
  8. * The event listeners for the application.
  9. *
  10. * @var array
  11. */
  12. protected $listeners = [
  13. //
  14. ];
  15. /**
  16. * Register any events for your application.
  17. *
  18. * @return void
  19. */
  20. public function boot()
  21. {
  22. parent::boot();
  23. //
  24. }
  25. }