EventListener.php 315 B

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