corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-15 3880d4c49c3ee3a5e363683be257f895ebf5cd83
src/Framework/Container.php
@@ -2,9 +2,20 @@
namespace Framework;
use ReflectionClass;
use Closure;
use ReflectionNamedType;
class Container {
    public function get(string $class_name):object {
    private array $registry = [];
    public function set(string $name, Closure $value): void {
        $this->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();
@@ -15,7 +26,20 @@
        }
        foreach($contructor->getParameters() as $param) {
            $type = (string) $param->getType();
            $type = $param->getType();
            if($type === null) {
                exit("Constructor parameter '{$param->getName()}' in the $class_name class has no type declaration");
            }
            if( ! ($type instanceof ReflectionNamedType)) {
                exit("Constructor parameter '{$param->getName()}' in the $class_name class is an invalid type: $type
                     - only single named type supported");
            }
            if($type->isBuiltin()) {
                exit("Unable to resolve costructor parameter '{$param->getName()}' of type '$type' in the '$class_name' class");
            }
            $dependencies[] = $this->get($type);
        }