Browse Source

Remove command suffix.

Taylor Otwell 9 years ago
parent
commit
ce20ef22c1
2 changed files with 2 additions and 2 deletions
  1. 1 1
      app/Console/Commands/Inspire.php
  2. 1 1
      app/Console/Kernel.php

+ 1 - 1
app/Console/Commands/InspireCommand.php → app/Console/Commands/Inspire.php

@@ -5,7 +5,7 @@ use Illuminate\Foundation\Inspiring;
 use Symfony\Component\Console\Input\InputOption;
 use Symfony\Component\Console\Input\InputArgument;
 
-class InspireCommand extends Command {
+class Inspire extends Command {
 
 	/**
 	 * The console command name.

+ 1 - 1
app/Console/Kernel.php

@@ -11,7 +11,7 @@ class Kernel extends ConsoleKernel {
 	 * @var array
 	 */
 	protected $commands = [
-		'App\Console\Commands\InspireCommand',
+		'App\Console\Commands\Inspire',
 	];
 
 	/**