EventListener.php 321 B

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