@@ -72,7 +72,8 @@ private function addFormSection(ArrayNodeDefinition $rootNode)
72
72
{
73
73
$ rootNode
74
74
->children ()
75
- ->arrayNode ('form ' )->setInfo ('form configuration ' )
75
+ ->arrayNode ('form ' )
76
+ ->setInfo ('form configuration ' )
76
77
->canBeUnset ()
77
78
->treatNullLike (array ('enabled ' => true ))
78
79
->treatTrueLike (array ('enabled ' => true ))
@@ -97,7 +98,8 @@ private function addEsiSection(ArrayNodeDefinition $rootNode)
97
98
{
98
99
$ rootNode
99
100
->children ()
100
- ->arrayNode ('esi ' )->setInfo ('esi configuration ' )
101
+ ->arrayNode ('esi ' )
102
+ ->setInfo ('esi configuration ' )
101
103
->canBeUnset ()
102
104
->treatNullLike (array ('enabled ' => true ))
103
105
->treatTrueLike (array ('enabled ' => true ))
@@ -113,7 +115,8 @@ private function addProfilerSection(ArrayNodeDefinition $rootNode)
113
115
{
114
116
$ rootNode
115
117
->children ()
116
- ->arrayNode ('profiler ' )->setInfo ('profiler configuration ' )
118
+ ->arrayNode ('profiler ' )
119
+ ->setInfo ('profiler configuration ' )
117
120
->canBeUnset ()
118
121
->children ()
119
122
->booleanNode ('only_exceptions ' )->defaultFalse ()->end ()
@@ -141,7 +144,8 @@ private function addRouterSection(ArrayNodeDefinition $rootNode)
141
144
{
142
145
$ rootNode
143
146
->children ()
144
- ->arrayNode ('router ' )->setInfo ('router configuration ' )
147
+ ->arrayNode ('router ' )
148
+ ->setInfo ('router configuration ' )
145
149
->canBeUnset ()
146
150
->children ()
147
151
->scalarNode ('resource ' )->isRequired ()->end ()
@@ -158,7 +162,8 @@ private function addSessionSection(ArrayNodeDefinition $rootNode)
158
162
{
159
163
$ rootNode
160
164
->children ()
161
- ->arrayNode ('session ' )->setInfo ('session configuration ' )
165
+ ->arrayNode ('session ' )
166
+ ->setInfo ('session configuration ' )
162
167
->canBeUnset ()
163
168
->children ()
164
169
->booleanNode ('auto_start ' )->defaultFalse ()->end ()
@@ -200,7 +205,8 @@ private function addTemplatingSection(ArrayNodeDefinition $rootNode)
200
205
201
206
$ rootNode
202
207
->children ()
203
- ->arrayNode ('templating ' )->setInfo ('templating configuration ' )
208
+ ->arrayNode ('templating ' )
209
+ ->setInfo ('templating configuration ' )
204
210
->canBeUnset ()
205
211
->children ()
206
212
->scalarNode ('assets_version ' )->defaultValue (null )->end ()
@@ -314,7 +320,8 @@ private function addTranslatorSection(ArrayNodeDefinition $rootNode)
314
320
{
315
321
$ rootNode
316
322
->children ()
317
- ->arrayNode ('translator ' )->setInfo ('translator configuration ' )
323
+ ->arrayNode ('translator ' )
324
+ ->setInfo ('translator configuration ' )
318
325
->canBeUnset ()
319
326
->treatNullLike (array ('enabled ' => true ))
320
327
->treatTrueLike (array ('enabled ' => true ))
@@ -331,7 +338,8 @@ private function addValidationSection(ArrayNodeDefinition $rootNode)
331
338
{
332
339
$ rootNode
333
340
->children ()
334
- ->arrayNode ('validation ' )->setInfo ('validation configuration ' )
341
+ ->arrayNode ('validation ' )
342
+ ->setInfo ('validation configuration ' )
335
343
->canBeUnset ()
336
344
->treatNullLike (array ('enabled ' => true ))
337
345
->treatTrueLike (array ('enabled ' => true ))
@@ -349,7 +357,8 @@ private function addAnnotationsSection(ArrayNodeDefinition $rootNode)
349
357
{
350
358
$ rootNode
351
359
->children ()
352
- ->arrayNode ('annotations ' )->setInfo ('annotation configuration ' )
360
+ ->arrayNode ('annotations ' )
361
+ ->setInfo ('annotation configuration ' )
353
362
->addDefaultsIfNotSet ()
354
363
->children ()
355
364
->scalarNode ('cache ' )->defaultValue ('file ' )->end ()
0 commit comments