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()
@@ 298-300 (lines=3) @@
295
                        ->arrayNode('view_response_listener')
296
                            ->beforeNormalization()
297
                                ->ifString()
298
                                ->then(function ($v) {
299
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
300
                                })
301
                            ->end()
302
                            ->canBeEnabled()
303
                            ->children()