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:
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 ]
149149 ]);
150150
You can’t perform that action at this time.
0 commit comments