Repo for the search and displace ingest module that takes odf, docx and pdf and transforms it into .md to be used with search and displace operations
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.

46 lines
981 B

  1. <?php
  2. namespace App\Console;
  3. use App\Console\Commands\DeployWorker;
  4. use App\Console\Commands\TestMachine;
  5. use Illuminate\Console\Scheduling\Schedule;
  6. use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
  7. class Kernel extends ConsoleKernel
  8. {
  9. /**
  10. * The Artisan commands provided by your application.
  11. *
  12. * @var array
  13. */
  14. protected $commands = [
  15. DeployWorker::class,
  16. TestMachine::class
  17. //
  18. ];
  19. /**
  20. * Define the application's command schedule.
  21. *
  22. * @param \Illuminate\Console\Scheduling\Schedule $schedule
  23. * @return void
  24. */
  25. protected function schedule(Schedule $schedule)
  26. {
  27. // $schedule->command('inspire')
  28. // ->hourly();
  29. }
  30. /**
  31. * Register the commands for the application.
  32. *
  33. * @return void
  34. */
  35. protected function commands()
  36. {
  37. $this->load(__DIR__.'/Commands');
  38. require base_path('routes/console.php');
  39. }
  40. }