From b2475720f28680d4a0c53f32f546b970ee414c6a Mon Sep 17 00:00:00 2001 From: Nabeel Shahzad Date: Sat, 16 Dec 2017 22:19:17 -0600 Subject: [PATCH] Add command class --- app/Console/Kernel.php | 1 + bootstrap/application.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index f58f197f..90dc7203 100755 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -14,6 +14,7 @@ class Kernel extends ConsoleKernel */ protected $commands = [ Commands\CreateDatabase::class, + Commands\Install::class, ]; /** diff --git a/bootstrap/application.php b/bootstrap/application.php index c2ebc46f..98154c83 100644 --- a/bootstrap/application.php +++ b/bootstrap/application.php @@ -54,7 +54,7 @@ class Application extends LaravelApplication public function langPath() { - return $this->resourcePath() . DIRECTORY_SEPARATOR . 'lang'; + return $this->resourcePath() . DS . 'lang'; } public function publicPath()