| 123456789101112131415161718192021222324252627282930 |
- <?php
- namespace App\Listeners;
- use App\Events\Event;
- class EventListener
- {
- /**
- * Create the event listener.
- *
- * @return void
- */
- public function __construct()
- {
- //
- }
- /**
- * Handle the event.
- *
- * @param Event $event
- *
- * @return void
- */
- public function handle(Event $event)
- {
- //
- }
- }
|