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.
This commit is contained in:
Yahya Uddin 2015-11-25 00:12:44 +00:00
parent 1fac29099e
commit 7398548320

View File

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