You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Job.php 777B

12345678910111213141516171819202122232425
  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\Bus\SelfHandling;
  7. use Illuminate\Contracts\Queue\ShouldQueue;
  8. abstract class Job implements SelfHandling, ShouldQueue
  9. {
  10. /*
  11. |--------------------------------------------------------------------------
  12. | Queueable Jobs
  13. |--------------------------------------------------------------------------
  14. |
  15. | This job base class provides a central location to place any logic that
  16. | is shared across all of your jobs. The trait included with the class
  17. | provides access to the "queueOn" and "delay" queue helper methods.
  18. |
  19. */
  20. use InteractsWithQueue, Queueable, SerializesModels;
  21. }