FriendsListUnReadMsgNoticeJob.php 648 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. namespace App\Jobs;
  3. use Illuminate\Bus\Queueable;
  4. use Illuminate\Queue\SerializesModels;
  5. use Illuminate\Queue\InteractsWithQueue;
  6. use Illuminate\Contracts\Queue\ShouldQueue;
  7. use Illuminate\Foundation\Bus\Dispatchable;
  8. class FriendsListUnReadMsgNoticeJob implements ShouldQueue
  9. {
  10. use Dispatchable;
  11. use InteractsWithQueue;
  12. use Queueable;
  13. use SerializesModels;
  14. private $uid;
  15. /**
  16. * Create a new job instance.
  17. *
  18. * @return void
  19. */
  20. public function __construct()
  21. {
  22. //
  23. }
  24. /**
  25. * Execute the job.
  26. *
  27. * @return void
  28. */
  29. public function handle()
  30. {
  31. }
  32. }