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 821af6b commit 56714d3Copy full SHA for 56714d3
Helpers/Env.php
@@ -22,7 +22,7 @@ public static function getMindsEnv() : array
22
continue;
23
}
24
$keyPieces = explode(static::ENV_ARRAY_DELIMITER, substr($envKey, strlen(static::ENV_PREFIX)));
25
- $config = array_merge_recursive($config, static::nestArray($keyPieces, $value));
+ $config = array_replace_recursive($config, static::nestArray($keyPieces, $value));
26
27
return $config;
28
0 commit comments