Code Duplication    Length = 3-3 lines in 2 locations

DependencyInjection/Configuration.php 2 locations

@@ 77-79 (lines=3) @@
74
                        throw new \LogicException('Loaders has to be array');
75
                    }
76
77
                    if (false == array_key_exists('default', $v['loaders'])) {
78
                        $v['loaders']['default'] = array('filesystem' => null);
79
                    }
80
81
                    if (empty($v['resolvers'])) {
82
                        $v['resolvers'] = array();
@@ 89-91 (lines=3) @@
86
                        throw new \LogicException('Resolvers has to be array');
87
                    }
88
89
                    if (false == array_key_exists('default', $v['resolvers'])) {
90
                        $v['resolvers']['default'] = array('web_path' => null);
91
                    }
92
93
                    return $v;
94
                })