1 | <?php namespace JobApis\JobsToMail\Console; |
||
6 | class Kernel extends ConsoleKernel |
||
7 | { |
||
8 | /** |
||
9 | * The Artisan commands provided by your application. |
||
10 | * |
||
11 | * @var array |
||
12 | */ |
||
13 | protected $commands = [ |
||
14 | Commands\DeleteNotifications::class, |
||
15 | Commands\EmailJobs::class, |
||
16 | ]; |
||
17 | |||
18 | /** |
||
19 | * Define the application's command schedule. |
||
20 | * |
||
21 | * @param \Illuminate\Console\Scheduling\Schedule $schedule |
||
22 | * @return void |
||
23 | */ |
||
24 | protected function schedule(Schedule $schedule) |
||
28 | } |
||
29 |