registry[$name] = $value; } public function get(string $class_name): object { if(array_key_exists($class_name, $this->registry)) { return $this->registry[$class_name](); } $reflector = new ReflectionClass($class_name); $contructor = $reflector->getConstructor(); $dependencies = []; if($contructor === null) { return new $class_name(); } foreach($contructor->getParameters() as $param) { $type = $param->getType(); if($type === null) { throw new InvalidArgumentException("Constructor parameter '{$param->getName()}' in the $class_name class has no type declaration"); } if( ! ($type instanceof ReflectionNamedType)) { throw new InvalidArgumentException("Constructor parameter '{$param->getName()}' in the $class_name class is an invalid type: $type - only single named type supported"); } if($type->isBuiltin()) { throw new InvalidArgumentException("Unable to resolve costructor parameter '{$param->getName()}' of type '$type' in the '$class_name' class"); } $dependencies[] = $this->get((string) $type); } return new $class_name(...$dependencies); } }