Skip to content

Commit 1438a50

Browse files
committed
More fixes
1 parent bda42b6 commit 1438a50

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Console/Commands/Environment/AppSettingsCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ private function checkForRedis()
153153
}
154154

155155
if (empty($this->variables['REDIS_PASSWORD'])) {
156-
unset($this->variables['REDIS_PASSWORD']);
156+
$this->variables['REDIS_PASSWORD'] = 'null';
157157
}
158158

159159
$this->variables['REDIS_PORT'] = $this->option('redis-port') ?? $this->ask(

config/database.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
'charset' => 'utf8mb4',
4242
'collation' => 'utf8mb4_unicode_ci',
4343
'prefix' => '',
44-
'strict' => env('DB_STRICT_MODE', true),
44+
'strict' => env('DB_STRICT_MODE', false),
4545
],
4646
],
4747

0 commit comments

Comments
 (0)