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()
@@ 287-289 (lines=3) @@
284
                        ->arrayNode('view_response_listener')
285
                            ->beforeNormalization()
286
                                ->ifString()
287
                                ->then(function ($v) {
288
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
289
                                })
290
                            ->end()
291
                            ->canBeEnabled()
292
                            ->children()