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()
@@ 248-250 (lines=3) @@
245
                        ->arrayNode('view_response_listener')
246
                            ->beforeNormalization()
247
                                ->ifString()
248
                                ->then(function ($v) {
249
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
250
                                })
251
                            ->end()
252
                            ->canBeEnabled()
253
                            ->children()