Kernel.php 481 B

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