We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e4a866 commit 0920c23Copy full SHA for 0920c23
src/Illuminate/Database/Schema/MySqlSchemaState.php
@@ -95,7 +95,7 @@ protected function baseDumpCommand()
95
protected function baseVariables(array $config)
96
{
97
return [
98
- 'LARAVEL_LOAD_HOST' => $config['host'],
+ 'LARAVEL_LOAD_HOST' => is_array($config['host']) ? $config['host'][0] : $config['host'],
99
'LARAVEL_LOAD_PORT' => $config['port'],
100
'LARAVEL_LOAD_USER' => $config['username'],
101
'LARAVEL_LOAD_PASSWORD' => $config['password'],
0 commit comments