Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 54-56 (lines=3) @@
51
                ->arrayNode('param_fetcher_listener')
52
                    ->beforeNormalization()
53
                        ->ifString()
54
                        ->then(function ($v) {
55
                            return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
56
                        })
57
                    ->end()
58
                    ->canBeEnabled()
59
                    ->children()
@@ 199-201 (lines=3) @@
196
                        ->arrayNode('view_response_listener')
197
                            ->beforeNormalization()
198
                                ->ifString()
199
                                ->then(function ($v) {
200
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
201
                                })
202
                            ->end()
203
                            ->canBeEnabled()
204
                            ->children()