Kernel.php 592 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. namespace App\Console;
  3. use App\Console\Commands\CacheCommand;
  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. CacheCommand::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. }