From 8f6a6d8df0cf09cab4bb28f12094cb8ca39d1e57 Mon Sep 17 00:00:00 2001 From: Vinicius Reis Date: Tue, 22 Dec 2015 17:50:14 -0200 Subject: [PATCH] =?UTF-8?q?Disable=20demonstration=20command=20If=20the=20?= =?UTF-8?q?purpose=20of=20the=20command=20is=20to=20demonstrate,=20does=20?= =?UTF-8?q?not=20become=20nescess=C3=A1rio=20leave=20it=20enabled=20by=20d?= =?UTF-8?q?efault.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/Console/Kernel.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 5e4a31b2..71c519d3 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel * @var array */ protected $commands = [ - Commands\Inspire::class, + // Commands\Inspire::class, ]; /** @@ -24,7 +24,7 @@ class Kernel extends ConsoleKernel */ protected function schedule(Schedule $schedule) { - $schedule->command('inspire') - ->hourly(); + // $schedule->command('inspire') + // ->hourly(); } }