@@ -141,12 +141,12 @@ private function addTwigOptions(ArrayNodeDefinition $rootNode): void
141
141
->scalarNode ('auto_reload ' )->end ()
142
142
->integerNode ('optimizations ' )->min (-1 )->end ()
143
143
->scalarNode ('default_path ' )
144
- ->info ('The default path used to load templates ' )
144
+ ->info ('The default path used to load templates. ' )
145
145
->defaultValue ('%kernel.project_dir%/templates ' )
146
146
->end ()
147
147
->arrayNode ('file_name_pattern ' )
148
148
->example ('*.twig ' )
149
- ->info ('Pattern of file name used for cache warmer and linter ' )
149
+ ->info ('Pattern of file name used for cache warmer and linter. ' )
150
150
->beforeNormalization ()
151
151
->ifString ()
152
152
->then (fn ($ value ) => [$ value ])
@@ -190,19 +190,19 @@ private function addTwigFormatOptions(ArrayNodeDefinition $rootNode): void
190
190
$ rootNode
191
191
->children ()
192
192
->arrayNode ('date ' )
193
- ->info ('The default format options used by the date filter ' )
193
+ ->info ('The default format options used by the date filter. ' )
194
194
->addDefaultsIfNotSet ()
195
195
->children ()
196
196
->scalarNode ('format ' )->defaultValue ('F j, Y H:i ' )->end ()
197
197
->scalarNode ('interval_format ' )->defaultValue ('%d days ' )->end ()
198
198
->scalarNode ('timezone ' )
199
- ->info ('The timezone used when formatting dates, when set to null, the timezone returned by date_default_timezone_get() is used ' )
199
+ ->info ('The timezone used when formatting dates, when set to null, the timezone returned by date_default_timezone_get() is used. ' )
200
200
->defaultNull ()
201
201
->end ()
202
202
->end ()
203
203
->end ()
204
204
->arrayNode ('number_format ' )
205
- ->info ('The default format options for the number_format filter ' )
205
+ ->info ('The default format options for the number_format filter. ' )
206
206
->addDefaultsIfNotSet ()
207
207
->children ()
208
208
->integerNode ('decimals ' )->defaultValue (0 )->end ()
@@ -221,7 +221,7 @@ private function addMailerSection(ArrayNodeDefinition $rootNode): void
221
221
->arrayNode ('mailer ' )
222
222
->children ()
223
223
->scalarNode ('html_to_text_converter ' )
224
- ->info (\sprintf ('A service implementing the "%s" ' , HtmlToTextConverterInterface::class))
224
+ ->info (\sprintf ('A service implementing the "%s". ' , HtmlToTextConverterInterface::class))
225
225
->defaultNull ()
226
226
->end ()
227
227
->end ()
0 commit comments