Kernel.php 590 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace App\Console;
  3. use App\Console\Commands\Apollo;
  4. use Illuminate\Console\Scheduling\Schedule;
  5. use Laravel\Lumen\Console\Kernel as ConsoleKernel;
  6. class Kernel extends ConsoleKernel
  7. {
  8. /**
  9. * The Artisan commands provided by your application.
  10. *
  11. * @var array
  12. */
  13. protected $commands = [
  14. Apollo::class
  15. ];
  16. /**
  17. * Define the application's command schedule.
  18. *
  19. * @param \Illuminate\Console\Scheduling\Schedule $schedule
  20. * @return void
  21. */
  22. protected function schedule(Schedule $schedule)
  23. {
  24. //
  25. }
  26. }