Job.php 534 B

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