File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
115
115
# config/packages/doctrine.yaml
116
116
doctrine :
117
117
dbal :
118
- password : ' %env(secret: DATABASE_PASSWORD)%'
118
+ password : ' %env(DATABASE_PASSWORD)%'
119
119
# ...
120
120
# ...
121
121
@@ -133,7 +133,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
133
133
134
134
<doctrine : config >
135
135
<doctrine : dbal
136
- password =" %env(secret: DATABASE_PASSWORD)%"
136
+ password =" %env(DATABASE_PASSWORD)%"
137
137
/>
138
138
</doctrine : config >
139
139
@@ -144,7 +144,7 @@ If you stored a ``DATABASE_PASSWORD`` secret, you can reference by:
144
144
// config/packages/doctrine.php
145
145
$container->loadFromExtension('doctrine', [
146
146
'dbal' => [
147
- 'password' => '%env(secret: DATABASE_PASSWORD)%',
147
+ 'password' => '%env(DATABASE_PASSWORD)%',
148
148
]
149
149
]);
150
150
You can’t perform that action at this time.
0 commit comments