From 7b5cc421a4a00a49ee7d4157b3485c8e64831ac3 Mon Sep 17 00:00:00 2001 From: Laravel Shift Date: Sat, 2 Sep 2017 21:11:37 +0000 Subject: [PATCH] Shift console commands --- app/Console/Kernel.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 622e774..a8c5158 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -29,12 +29,14 @@ protected function schedule(Schedule $schedule) } /** - * Register the Closure based commands for the application. + * Register the commands for the application. * * @return void */ protected function commands() { + $this->load(__DIR__.'/Commands'); + require base_path('routes/console.php'); } }