8000 Remove references to the secret env processors · symfony/symfony-docs@eec5a43 · GitHub
[go: up one dir, main page]

Skip to content

Commit eec5a43

Browse files
committed
Remove references to the secret env processors
1 parent d1a9979 commit eec5a43

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configuration/secrets.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
115115
# config/packages/doctrine.yaml
116116
doctrine:
117117
dbal:
118-
password: '%env(secret:DATABASE_PASSWORD)%'
118+
password: '%env(DATABASE_PASSWORD)%'
119119
# ...
120120
# ...
121121
@@ -133,7 +133,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
133133
134134
<doctrine:config>
135135
<doctrine:dbal
136-
password="%env(secret:DATABASE_PASSWORD)%"
136+
password="%env(DATABASE_PASSWORD)%"
137137
/>
138138
</doctrine:config>
139139
@@ -144,7 +144,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
144144
// config/packages/doctrine.php
145145
$container->loadFromExtension('doctrine', [
146146
'dbal' => [
147-
'password' => '%env(secret:DATABASE_PASSWORD)%',
147+
'password' => '%env(DATABASE_PASSWORD)%',
148148
]
149< 4115 /code>149
]);
150150

0 commit comments

Comments
 (0)
0