Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 75-77 (lines=3) @@
72
                ->arrayNode('param_fetcher_listener')
73
                    ->beforeNormalization()
74
                        ->ifString()
75
                        ->then(function ($v) {
76
                            return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
77
                        })
78
                    ->end()
79
                    ->canBeEnabled()
80
                    ->children()
@@ 217-219 (lines=3) @@
214
                        ->arrayNode('view_response_listener')
215
                            ->beforeNormalization()
216
                                ->ifString()
217
                                ->then(function ($v) {
218
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
219
                                })
220
                            ->end()
221
                            ->canBeEnabled()
222
                            ->children()