| 1 | <?php | ||
| 23 | class Kernel extends ConsoleKernel | ||
| 24 | { | ||
| 25 | /** | ||
| 26 | * The Artisan commands provided by your application. | ||
| 27 | * | ||
| 28 | * @var array | ||
| 29 | */ | ||
| 30 | protected $commands = [ | ||
| 31 | Commands\SendMessages::class, | ||
| 32 | ]; | ||
| 33 | |||
| 34 | /** | ||
| 35 | * Define the application's command schedule. | ||
| 36 | * | ||
| 37 | * @param \Illuminate\Console\Scheduling\Schedule $schedule | ||
| 38 | * | ||
| 39 | * @return void | ||
| 40 | */ | ||
| 41 | protected function schedule(Schedule $schedule) | ||
| 48 | } | ||
| 49 |