From 739854832044152b5ed5d5a26e7fd553cf737b58 Mon Sep 17 00:00:00 2001 From: Yahya Uddin Date: Wed, 25 Nov 2015 00:12:44 +0000 Subject: [PATCH] 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. --- 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 0aad25983fe..5e4a31b2d8f 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel * @var array */ protected $commands = [ - \App\Console\Commands\Inspire::class, + Commands\Inspire::class, ]; /**