Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Remove references to the secret env processors
  • Loading branch information
HypeMC committed Mar 2, 2020
commit eec5a437b34a331199e265ad0bd30724d307b36a
6 changes: 3 additions & 3 deletions configuration/secrets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
# config/packages/doctrine.yaml
doctrine:
dbal:
password: '%env(secret:DATABASE_PASSWORD)%'
password: '%env(DATABASE_PASSWORD)%'
# ...
# ...

Expand All @@ -133,7 +133,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:

<doctrine:config>
<doctrine:dbal
password="%env(secret:DATABASE_PASSWORD)%"
password="%env(DATABASE_PASSWORD)%"
/>
</doctrine:config>

Expand All @@ -144,7 +144,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
// config/packages/doctrine.php
$container->loadFromExtension('doctrine', [
'dbal' => [
'password' => '%env(secret:DATABASE_PASSWORD)%',
'password' => '%env(DATABASE_PASSWORD)%',
]
]);

Expand Down