A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

25 řádky
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. }