A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

25 linhas
720B

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