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()
@@ 218-220 (lines=3) @@
215
                        ->arrayNode('view_response_listener')
216
                            ->beforeNormalization()
217
                                ->ifString()
218
                                ->then(function ($v) {
219
                                    return ['enabled' => in_array($v, ['force', 'true']), 'force' => 'force' === $v];
220
                                })
221
                            ->end()
222
                            ->canBeEnabled()
223
                            ->children()