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()
@@ 276-278 (lines=3) @@
273
                        ->arrayNode('view_response_listener')
274
                            ->beforeNormalization()
275
                                ->ifString()
276
                                ->then(function ($v) {
277
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
278
                                })
279
                            ->end()
280
                            ->canBeEnabled()
281
                            ->children()