Total Complexity | 6 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Contenedor implements ContenedorInterface |
||
12 | { |
||
13 | private $_bindings = []; |
||
14 | |||
15 | //Rutas de Factory |
||
16 | private $_rutas = [ |
||
17 | 'FactoryInterface' => 'src\\Factory' |
||
18 | ]; |
||
19 | |||
20 | public function obtener(string $abstract) |
||
38 | } |
||
39 | |||
40 | private function buildDependencies(ReflectionClass $reflection): array |
||
59 | } |
||
60 | } |