Skip to content

Commit

Permalink
Update .env.example to reflect latest version of vlucas/phpdotenv. (#577
Browse files Browse the repository at this point in the history
)
  • Loading branch information
mpdonadio authored Oct 23, 2020
1 parent 34a8f93 commit 2d48c40
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
# like so:
#
# $databases['default']['default'] = [
# 'database' => getenv('MYSQL_DATABASE'),
# 'database' => $_ENV['MYSQL_DATABASE'],
# 'driver' => 'mysql',
# 'host' => getenv('MYSQL_HOSTNAME'),
# 'host' => $_ENV['MYSQL_HOSTNAME'],
# 'namespace' => 'Drupal\\Core\\Database\\Driver\\mysql',
# 'password' => getenv('MYSQL_PASSWORD'),
# 'port' => getenv('MYSQL_PORT'),
# 'password' => $_ENV['MYSQL_PASSWORD'],
# 'port' => $_ENV['MYSQL_PORT'],
# 'prefix' => '',
# 'username' => getenv('MYSQL_USER'),
# 'username' => $_ENV['MYSQL_USER'],
# ];
#
# Uncomment and populate as needed.
Expand Down

0 comments on commit 2d48c40

Please sign in to comment.