| 1 | <?php  | 
            ||
| 8 | class Kernel extends ConsoleKernel  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * The Artisan commands provided by your application.  | 
            ||
| 12 | *  | 
            ||
| 13 | * @var array  | 
            ||
| 14 | */  | 
            ||
| 15 | protected $commands = [  | 
            ||
| 16 | \PiFinder\Console\Commands\FlushOldDevices::class,  | 
            ||
| 17 | \PiFinder\Console\Commands\UserCreate::class,  | 
            ||
| 18 | \PiFinder\Console\Commands\UserDelete::class,  | 
            ||
| 19 | ];  | 
            ||
| 20 | |||
| 21 | /**  | 
            ||
| 22 | * Define the application's command schedule.  | 
            ||
| 23 | *  | 
            ||
| 24 | * @param \Illuminate\Console\Scheduling\Schedule $schedule  | 
            ||
| 25 | */  | 
            ||
| 26 | 5 | protected function schedule(Schedule $schedule)  | 
            |
| 31 | |||
| 32 | /**  | 
            ||
| 33 | * Register the Closure based commands for the application.  | 
            ||
| 34 | *  | 
            ||
| 35 | * @return void  | 
            ||
| 36 | */  | 
            ||
| 37 | protected function commands()  | 
            ||
| 41 | }  | 
            ||
| 42 |