Merge pull request #4391 from beganovich/v5-surround-strings-with-quotes-if-needed

(v5) Update surround logic for strings
This commit is contained in:
Benjamin Beganović 2020-11-29 14:22:03 +01:00 committed by GitHub
commit a0bad23860
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -131,7 +131,7 @@ trait AppSetup
$words_count = count(explode(' ', trim($value)));
if (is_null($position)) {
$env[] = "{$property}=" . $value . "\n"; // If we don't have entry for variable in the .env, write it.
$words_count > 1 ? $env[] = "{$property}=" . '"' . $value . '"' . "\n" : $env[] = "{$property}=" . $value . "\n";
} else if ($words_count > 1) {
$env[$position] = "{$property}=" . '"' . $value . '"' . "\n"; // If value of variable is more than one word, surround with quotes.
} else {