A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
315B

  1. <?php
  2. namespace App\Jobs;
  3. class ExampleJob extends Job
  4. {
  5. /**
  6. * Create a new job instance.
  7. *
  8. * @return void
  9. */
  10. public function __construct()
  11. {
  12. //
  13. }
  14. /**
  15. * Execute the job.
  16. *
  17. * @return void
  18. */
  19. public function handle()
  20. {
  21. //
  22. }
  23. }