1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Listeners;
- use App\Events\ExampleEvent;
- use Illuminate\Queue\InteractsWithQueue;
- use Illuminate\Contracts\Queue\ShouldQueue;
- class ExampleListener
- {
-
- public function __construct()
- {
-
- }
-
- public function handle(ExampleEvent $event)
- {
-
- }
- }
|