Set default env name to "production" and debug to false

This commit is contained in:
Nabeel Shahzad
2021-05-29 18:13:36 -04:00
parent a2f91b6754
commit 97f095e4e9
3 changed files with 7 additions and 5 deletions

View File

@@ -16,9 +16,9 @@ use Symfony\Component\HttpFoundation\File\Exception\FileException;
class ConfigService extends Service
{
protected static $defaultValues = [
'APP_ENV' => 'prod',
'APP_ENV' => 'production',
'APP_KEY' => '',
'APP_DEBUG' => true,
'APP_DEBUG' => false,
'APP_LOCALE' => 'en',
'DEBUG_TOOLBAR' => false,
'SITE_NAME' => '',