Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 85-87 (lines=3) @@
82
                ->arrayNode('param_fetcher_listener')
83
                    ->beforeNormalization()
84
                        ->ifString()
85
                        ->then(function ($v) {
86
                            return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
87
                        })
88
                    ->end()
89
                    ->canBeEnabled()
90
                    ->children()
@@ 278-280 (lines=3) @@
275
                        ->arrayNode('view_response_listener')
276
                            ->beforeNormalization()
277
                                ->ifString()
278
                                ->then(function ($v) {
279
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
280
                                })
281
                            ->end()
282
                            ->canBeEnabled()
283
                            ->children()