A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

25 lignes
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. }