Skip to content

Commit d717c8f

Browse files
committed
Merge branch '3.4' into 4.1
* 3.4: Removed an unnecessary (and outdated) reference fix spacing
2 parents df3dd4a + 15957db commit d717c8f

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

configuration/external_parameters.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ Symfony provides the following env var processors:
194194
parameters:
195195
env(SECRET): 'some_secret'
196196
framework:
197-
secret: '%env(string:SECRET)%'
197+
secret: '%env(string:SECRET)%'
198198
199199
.. code-block:: xml
200200
@@ -234,7 +234,7 @@ Symfony provides the following env var processors:
234234
parameters:
235235
env(HTTP_METHOD_OVERRIDE): 'true'
236236
framework:
237-
http_method_override: '%env(bool:HTTP_METHOD_OVERRIDE)%'
237+
http_method_override: '%env(bool:HTTP_METHOD_OVERRIDE)%'
238238
239239
.. code-block:: xml
240240
@@ -280,8 +280,8 @@ Symfony provides the following env var processors:
280280
parameters:
281281
env(HEALTH_CHECK_METHOD): 'Symfony\Component\HttpFoundation\Request::METHOD_HEAD'
282282
security:
283-
access_control:
284-
- { path: '^/health-check$', methods: '%env(const:HEALTH_CHECK_METHOD)%' }
283+
access_control:
284+
- { path: '^/health-check$', methods: '%env(const:HEALTH_CHECK_METHOD)%' }
285285
286286
.. code-block:: xml
287287
@@ -330,7 +330,7 @@ Symfony provides the following env var processors:
330330
parameters:
331331
env(TRUSTED_HOSTS): '["10.0.0.1", "10.0.0.2"]'
332332
framework:
333-
trusted_hosts: '%env(json:TRUSTED_HOSTS)%'
333+
trusted_hosts: '%env(json:TRUSTED_HOSTS)%'
334334
335335
.. code-block:: xml
336336

security/multiple_guard_authenticators.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,6 @@ This is how your security configuration can look in action:
7878
),
7979
));
8080
81-
If your authenticators need separate providers, you will need to create a
82-
:doc:`chain of user providers </security/multiple_user_providers>`.
83-
8481
There is one limitation with this approach - you have to use exactly one entry point.
8582

8683
Multiple Authenticators with Separate Entry Points

0 commit comments

Comments
 (0)