Skip to content

Commit

Permalink
Added double quotes for password
Browse files Browse the repository at this point in the history
  • Loading branch information
ajayfroiden authored Aug 21, 2019
1 parent 5c8843f commit cfe6d7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Helpers/EnvironmentManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public function saveFile(Request $input)
$databaseSetting = 'DB_HOST=' . $dbHost . '
DB_DATABASE=' . $dbName . '
DB_USERNAME=' . $dbUsername . '
DB_PASSWORD=' . $dbPassword . '
DB_PASSWORD="' . $dbPassword . '"
';

// @ignoreCodingStandard
Expand Down Expand Up @@ -111,4 +111,4 @@ public function saveFile(Request $input)

}
}
}
}

0 comments on commit cfe6d7e

Please sign in to comment.