Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 88-90 (lines=3) @@
85
                ->arrayNode('param_fetcher_listener')
86
                    ->beforeNormalization()
87
                        ->ifString()
88
                        ->then(function ($v) {
89
                            return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
90
                        })
91
                    ->end()
92
                    ->canBeEnabled()
93
                    ->children()
@@ 260-262 (lines=3) @@
257
                        ->arrayNode('view_response_listener')
258
                            ->beforeNormalization()
259
                                ->ifString()
260
                                ->then(function ($v) {
261
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
262
                                })
263
                            ->end()
264
                            ->canBeEnabled()
265
                            ->children()