From 313abe624db65237d4bacc5fa3dd93e651c05ab9 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 18 Nov 2014 23:12:28 -0600 Subject: [PATCH] Use real command name. --- app/Console/Kernel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index e5cdc935..6df548ff 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -23,7 +23,7 @@ class Kernel extends ConsoleKernel { */ protected function schedule(Schedule $schedule) { - $schedule->artisan('foo') + $schedule->artisan('inspire'); ->hourly(); }