Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 84-86 (lines=3) @@
81
                ->arrayNode('param_fetcher_listener')
82
                    ->beforeNormalization()
83
                        ->ifString()
84
                        ->then(function ($v) {
85
                            return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
86
                        })
87
                    ->end()
88
                    ->canBeEnabled()
89
                    ->children()
@@ 296-298 (lines=3) @@
293
                        ->arrayNode('view_response_listener')
294
                            ->beforeNormalization()
295
                                ->ifString()
296
                                ->then(function ($v) {
297
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
298
                                })
299
                            ->end()
300
                            ->canBeEnabled()
301
                            ->children()