Browse Source

Merge pull request #3570 from anik786/patch-2

Remove unnecessary fully quantified name
Taylor Otwell 9 years ago
parent
commit
7b263997e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/Console/Kernel.php

+ 1 - 1
app/Console/Kernel.php

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