@@ -164,7 +164,7 @@ turn the value of the ``HTTP_PORT`` env var into an integer:
164164 https://symfony.com/schema/dic/symfony/symfony-1.0.xsd" >
165165
166166 <framework : config >
167- <framework : router http-port =" %env(int:HTTP_PORT)%" />
167+ <framework : router http-port =" %env(int:HTTP_PORT)%" />
168168 </framework : config >
169169 </container >
170170
@@ -208,7 +208,7 @@ Symfony provides the following env var processors:
208208 <parameter key =" env(SECRET)" >some_secret</parameter >
209209 </parameters >
210210
211- <framework : config secret =" %env(string:SECRET)%" />
211+ <framework : config secret =" %env(string:SECRET)%" />
212212 </container >
213213
214214 .. code-block :: php
@@ -248,7 +248,7 @@ Symfony provides the following env var processors:
248248 <parameter key =" env(HTTP_METHOD_OVERRIDE)" >true</parameter >
249249 </parameters >
250250
251- <framework : config http-methode-override =" %env(bool:HTTP_METHOD_OVERRIDE)%" />
251+ <framework : config http-methode-override =" %env(bool:HTTP_METHOD_OVERRIDE)%" />
252252 </container >
253253
254254 .. code-block :: php
@@ -294,7 +294,7 @@ Symfony provides the following env var processors:
294294 </parameters >
295295
296296 <security : config >
297- <rule path =" ^/health-check$" methods =" %env(const:HEALTH_CHECK_METHOD)%" />
297+ <rule path =" ^/health-check$" methods =" %env(const:HEALTH_CHECK_METHOD)%" />
298298 </security : config >
299299 </container >
300300
@@ -344,7 +344,7 @@ Symfony provides the following env var processors:
344344 <parameter key =" env(TRUSTED_HOSTS)" >["10.0.0.1", "10.0.0.2"]</parameter >
345345 </parameters >
346346
347- <framework : config trusted-hosts =" %env(json:TRUSTED_HOSTS)%" />
347+ <framework : config trusted-hosts =" %env(json:TRUSTED_HOSTS)%" />
348348 </container >
349349
350350 .. code-block :: php
@@ -384,7 +384,7 @@ Symfony provides the following env var processors:
384384 <parameter key =" env(SENTRY_DSN)" >http://%env(HOST)%/project</parameter >
385385 </parameters >
386386
387- <sentry : config dsn =" %env(resolve:SENTRY_DSN)%" />
387+ <sentry : config dsn =" %env(resolve:SENTRY_DSN)%" />
388388 </container >
389389
390390 .. code-block :: php
@@ -435,7 +435,7 @@ Symfony provides the following env var processors:
435435 <parameter key =" env(AUTH_FILE)" >../config/auth.json</parameter >
436436 </parameters >
437437
438- <google auth =" %env(file:AUTH_FILE)%" />
438+ <google auth =" %env(file:AUTH_FILE)%" />
439439 </container >
440440
441441 .. code-block :: php
0 commit comments