Skip to content

Commit

Permalink
remove default
Browse files Browse the repository at this point in the history
  • Loading branch information
chriskapp committed Feb 24, 2024
1 parent b935645 commit 7e6da5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7e6da5e

Please sign in to comment.