Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 75-77 (lines=3) @@
72
                ->arrayNode('param_fetcher_listener')
73
                    ->beforeNormalization()
74
                        ->ifString()
75
                        ->then(function ($v) {
76
                            return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
77
                        })
78
                    ->end()
79
                    ->canBeEnabled()
80
                    ->children()
@@ 268-270 (lines=3) @@
265
                        ->arrayNode('view_response_listener')
266
                            ->beforeNormalization()
267
                                ->ifString()
268
                                ->then(function ($v) {
269
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
270
                                })
271
                            ->end()
272
                            ->canBeEnabled()
273
                            ->children()