From 23371f87713a85fa1c9c73606d76b5b8d48feec3 Mon Sep 17 00:00:00 2001 From: Yahya Uddin Date: Thu, 26 Nov 2015 02:21:08 +0000 Subject: [PATCH 1/3] Update Kernel.php --- 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 5e4a31b2d8f..55621a4b166 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\InspireCommand::class, ]; /** From 7de56422bf84a4bea727dcb26b3b863603c3a3cf Mon Sep 17 00:00:00 2001 From: Yahya Uddin Date: Thu, 26 Nov 2015 02:23:17 +0000 Subject: [PATCH 2/3] Update Inspire.php --- app/Console/Commands/Inspire.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/Inspire.php b/app/Console/Commands/Inspire.php index db9ab85422f..76ce1da82c3 100644 --- a/app/Console/Commands/Inspire.php +++ b/app/Console/Commands/Inspire.php @@ -5,7 +5,7 @@ use Illuminate\Console\Command; use Illuminate\Foundation\Inspiring; -class Inspire extends Command +class InspireCommand extends Command { /** * The name and signature of the console command. From e0fbc1c1319b7a335e9a7df14f69971366537c73 Mon Sep 17 00:00:00 2001 From: Yahya Uddin Date: Thu, 26 Nov 2015 02:27:55 +0000 Subject: [PATCH 3/3] Rename Inspire.php to InspireCommand.php --- app/Console/Commands/{Inspire.php => InspireCommand.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename app/Console/Commands/{Inspire.php => InspireCommand.php} (100%) diff --git a/app/Console/Commands/Inspire.php b/app/Console/Commands/InspireCommand.php similarity index 100% rename from app/Console/Commands/Inspire.php rename to app/Console/Commands/InspireCommand.php