PremoderateComment.php 403 B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace App\Listeners;
  3. use App\Events\CommentAdded;
  4. use Illuminate\Contracts\Queue\ShouldQueue;
  5. use Illuminate\Queue\InteractsWithQueue;
  6. class PremoderateComment
  7. {
  8. /**
  9. * Create the event listener.
  10. */
  11. public function __construct()
  12. {
  13. //
  14. }
  15. /**
  16. * Handle the event.
  17. */
  18. public function handle(CommentAdded $event): void
  19. {
  20. //
  21. }
  22. }