A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

32 linhas
496B

  1. <?php
  2. namespace App\Listeners;
  3. use App\Events\ExampleEvent;
  4. use Illuminate\Contracts\Queue\ShouldQueue;
  5. use Illuminate\Queue\InteractsWithQueue;
  6. class ExampleListener
  7. {
  8. /**
  9. * Create the event listener.
  10. *
  11. * @return void
  12. */
  13. public function __construct()
  14. {
  15. //
  16. }
  17. /**
  18. * Handle the event.
  19. *
  20. * @param \App\Events\ExampleEvent $event
  21. * @return void
  22. */
  23. public function handle(ExampleEvent $event)
  24. {
  25. //
  26. }
  27. }