1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Listeners;
- use App\Events\CommentAdded;
- use Illuminate\Contracts\Queue\ShouldQueue;
- use Illuminate\Queue\InteractsWithQueue;
- class PremoderateComment
- {
- /**
- * Create the event listener.
- */
- public function __construct()
- {
- //
- }
- /**
- * Handle the event.
- */
- public function handle(CommentAdded $event): void
- {
- //
- }
- }
|