Code Duplication    Length = 1-1 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 290-290 (lines=1) @@
287
288
        $node
289
            ->validate()
290
                ->ifTrue(function ($v) {
291
                    return isset($v['driver']) && 'propel' === $v['driver'] && isset($v['listener']);
292
                })
293
                    ->thenInvalid('Propel doesn\'t support listeners')
@@ 294-294 (lines=1) @@
291
                    return isset($v['driver']) && 'propel' === $v['driver'] && isset($v['listener']);
292
                })
293
                    ->thenInvalid('Propel doesn\'t support listeners')
294
                ->ifTrue(function ($v) {
295
                    return isset($v['driver']) && 'propel' === $v['driver'] && isset($v['repository']);
296
                })
297
                    ->thenInvalid('Propel doesn\'t support the "repository" parameter')