@@ -56,14 +56,17 @@ configuration looks like this:
5656 <srv : container xmlns =" http://symfony.com/schema/dic/security"
5757 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5858 xmlns : srv =" http://symfony.com/schema/dic/services"
59- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
59+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
60+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
6061
6162 <config >
6263 <provider name =" in_memory" >
6364 <memory />
6465 </provider >
6566
66- <firewall name =" dev" pattern =" ^/(_(profiler|wdt)|css|images|js)/" security =false />
67+ <firewall name =" dev"
68+ pattern =" ^/(_(profiler|wdt)|css|images|js)/"
69+ security =false />
6770
6871 <firewall name =" default" >
6972 <anonymous />
@@ -145,7 +148,8 @@ To activate this, add the ``http_basic`` key under your firewall:
145148 <srv : container xmlns =" http://symfony.com/schema/dic/security"
146149 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
147150 xmlns : srv =" http://symfony.com/schema/dic/services"
148- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
151+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
152+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
149153
150154 <config >
151155 <!-- ... -->
@@ -216,7 +220,8 @@ user to be logged in to access this URL:
216220 <srv : container xmlns =" http://symfony.com/schema/dic/security"
217221 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
218222 xmlns : srv =" http://symfony.com/schema/dic/services"
219- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
223+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
224+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
220225
221226 <config >
222227 <!-- ... -->
@@ -310,7 +315,8 @@ provider, but it's better to think of it as an "in configuration" provider:
310315 <srv : container xmlns =" http://symfony.com/schema/dic/security"
311316 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
312317 xmlns : srv =" http://symfony.com/schema/dic/services"
313- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
318+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
319+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
314320
315321 <config >
316322 <provider name =" in_memory" >
@@ -377,7 +383,8 @@ To fix this, add an ``encoders`` key:
377383 <srv : container xmlns =" http://symfony.com/schema/dic/security"
378384 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
379385 xmlns : srv =" http://symfony.com/schema/dic/services"
380- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
386+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
387+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
381388
382389 <config >
383390 <!-- ... -->
@@ -458,13 +465,16 @@ else, you'll want to encode their passwords. The best algorithm to use is
458465 <srv : container xmlns =" http://symfony.com/schema/dic/security"
459466 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
460467 xmlns : srv =" http://symfony.com/schema/dic/services"
461- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
468+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
469+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
462470
463471 <config >
464472 <!-- ... -->
465473
466474 <encoder class =" Symfony\Component\Security\Core\User\User"
467- algorithm =" bcrypt" cost =" 12" />
475+ algorithm =" bcrypt"
476+ cost =" 12" />
477+
468478 <!-- ... -->
469479 </config >
470480 </srv : container >
@@ -516,7 +526,8 @@ like this:
516526 <srv : container xmlns =" http://symfony.com/schema/dic/security"
517527 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
518528 xmlns : srv =" http://symfony.com/schema/dic/services"
519- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
529+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
530+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
520531
521532 <config >
522533 <provider name =" in_memory" >
@@ -683,7 +694,8 @@ URL pattern. You saw this earlier, where anything matching the regular expressio
683694 <srv : container xmlns =" http://symfony.com/schema/dic/security"
684695 xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
685696 xmlns : srv =" http://symfony.com/schema/dic/services"
686- xsi : schemaLocation =" http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd" >
697+ xsi : schemaLocation =" http://symfony.com/schema/dic/services
698+ http://symfony.com/schema/dic/services/services-1.0.xsd" >
687699
688700 <config >
689701 <!-- ... -->
0 commit comments