Browse Source

Remove unnecessary fully quantified name

The class is unnessarily fully quantified and is an warning that is also flagged up in popular IDE's such as PHPStorm. It is also arguably bad practice as it can lead to problems if directories are moved in the future.
Yahya Uddin 9 years ago
parent
commit
7398548320
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,
     ];
 
     /**