From 7e6da5e165d5690fa2ae19dbb20b263786b3c2e2 Mon Sep 17 00:00:00 2001 From: Christoph Kappestein Date: Sun, 25 Feb 2024 00:22:01 +0100 Subject: [PATCH] remove default --- configuration.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configuration.php b/configuration.php index 427d26b2..2fb33d9c 100644 --- a/configuration.php +++ b/configuration.php @@ -12,11 +12,11 @@ 'psx_dispatch' => '', // Defines the current environment i.e. prod or dev - 'psx_env' => env('APP_ENV')->string()->default('prod'), + 'psx_env' => env('APP_ENV')->string(), // Whether the app runs in debug mode or not. If not error reporting is set to 0, also several caches are used if // the debug mode is false - 'psx_debug' => env('APP_DEBUG')->bool()->default(false), + 'psx_debug' => env('APP_DEBUG')->bool(), // Database parameters which are used for the doctrine DBAL connection // https://www.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html