From 5b0eeb5d81cf5e66ec33ce2c3b3edbf9d2bea291 Mon Sep 17 00:00:00 2001 From: Manish Verma Date: Wed, 19 Oct 2016 11:57:33 +0530 Subject: [PATCH] commands bug fix patch remove commands from kernel which deos not exist. --- app/Console/Kernel.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 6f204fe03..96b85b48a 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -55,12 +55,6 @@ class Kernel extends ConsoleKernel case 'work': $this->getCondition($schedule->command('ticket:close'), $command); break; - case 'followup': - $this->getCondition($schedule->command('users:followup'), $command); - break; - case 'message': - $this->getCondition($schedule->command('message:send'), $command); - break; } }