| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | class Kernel extends ConsoleKernel |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * The Artisan commands provided by your application. |
||
| 19 | * |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | protected $commands = [ |
||
| 23 | DeleteExpiredTokensCommand::class, |
||
| 24 | TaskNotificationsCommand::class |
||
| 25 | ]; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * Define the application's command schedule. |
||
| 29 | * |
||
| 30 | * @param Schedule $schedule |
||
| 31 | */ |
||
| 32 | protected function schedule(Schedule $schedule) |
||
| 43 |