From 10527f5dbcce276db66609adb31139b87ab3754b Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 12 Jul 2024 10:19:49 +0300 Subject: [PATCH] Update help message in logs when setting up the app --- app/Exceptions/Handler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index a6f286c78d3b..228878b3b4e7 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -152,7 +152,7 @@ class Handler extends ExceptionHandler parent::report($exception); if (Ninja::isSelfHost() && $exception instanceof MissingAppKeyException) { - info('To setup the app run "cp .env.example .env" followed by "php artisan key:generate"'); + info('To setup the app run: cp .env.example .env'); } }