A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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