A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
395B

  1. <?php
  2. namespace App\Providers;
  3. use Laravel\Lumen\Providers\EventServiceProvider as ServiceProvider;
  4. class EventServiceProvider extends ServiceProvider
  5. {
  6. /**
  7. * The event listener mappings for the application.
  8. *
  9. * @var array
  10. */
  11. protected $listen = [
  12. \App\Events\ExampleEvent::class => [
  13. \App\Listeners\ExampleListener::class,
  14. ],
  15. ];
  16. }