File tree Expand file tree Collapse file tree 5 files changed +18
-0
lines changed
Tests/DependencyInjection Expand file tree Collapse file tree 5 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 2222 <xsd : element name =" form" type =" form" minOccurs =" 0" maxOccurs =" 1" />
2323 <xsd : element name =" csrf-protection" type =" csrf_protection" minOccurs =" 0" maxOccurs =" 1" />
2424 <xsd : element name =" esi" type =" esi" minOccurs =" 0" maxOccurs =" 1" />
25+ <xsd : element name =" ssi" type =" ssi" minOccurs =" 0" maxOccurs =" 1" />
2526 <xsd : element name =" fragments" type =" fragments" minOccurs =" 0" maxOccurs =" 1" />
2627 <xsd : element name =" profiler" type =" profiler" minOccurs =" 0" maxOccurs =" 1" />
2728 <xsd : element name =" router" type =" router" minOccurs =" 0" maxOccurs =" 1" />
6465 <xsd : attribute name =" enabled" type =" xsd:boolean" />
6566 </xsd : complexType >
6667
68+ <xsd : complexType name =" ssi" >
69+ <xsd : attribute name =" enabled" type =" xsd:boolean" />
70+ </xsd : complexType >
71+
6772 <xsd : complexType name =" fragments" >
6873 <xsd : attribute name =" enabled" type =" xsd:boolean" />
6974 <xsd : attribute name =" path" type =" xsd:string" />
Original file line number Diff line number Diff line change 1616 'esi ' => array (
1717 'enabled ' => true ,
1818 ),
19+ 'ssi ' => array (
20+ 'enabled ' => true ,
21+ ),
1922 'profiler ' => array (
2023 'only_exceptions ' => true ,
2124 'enabled ' => false ,
Original file line number Diff line number Diff line change 1212 <framework : csrf-protection field-name =" _csrf" />
1313 </framework : form >
1414 <framework : esi enabled =" true" />
15+ <framework : ssi enabled =" true" />
1516 <framework : profiler only-exceptions =" true" enabled =" false" />
1617 <framework : router resource =" %kernel.root_dir%/config/routing.xml" type =" xml" />
1718 <framework : session gc-maxlifetime =" 90000" gc-probability =" 1" gc-divisor =" 108" storage-id =" session.storage.native" handler-id =" session.handler.native_file" name =" _SYMFONY" cookie-lifetime =" 86400" cookie-path =" /" cookie-domain =" example.com" cookie-secure =" true" cookie-httponly =" true" save-path =" /path/to/sessions" />
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ framework:
1010 enabled : true
1111 esi :
1212 enabled : true
13+ ssi :
14+ enabled : true
1315 profiler :
1416 only_exceptions : true
1517 enabled : false
Original file line number Diff line number Diff line change @@ -98,6 +98,13 @@ public function testEsi()
9898 $ this ->assertTrue ($ container ->hasDefinition ('esi ' ), '->registerEsiConfiguration() loads esi.xml ' );
9999 }
100100
101+ public function testSsi ()
102+ {
103+ $ container = $ this ->createContainerFromFile ('full ' );
104+
105+ $ this ->assertTrue ($ container ->hasDefinition ('ssi ' ), '->registerSsiConfiguration() loads ssi.xml ' );
106+ }
107+
101108 public function testEnabledProfiler ()
102109 {
103110 $ container = $ this ->createContainerFromFile ('profiler ' );
You can’t perform that action at this time.
0 commit comments