corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-21 ce9b2119ceb911faab15fa43e741d63e3fb7834c
src/Framework/Container.php
@@ -4,6 +4,7 @@
use ReflectionClass;
use Closure;
use ReflectionNamedType;
use InvalidArgumentException;
class Container {
@@ -29,16 +30,16 @@
            $type = $param->getType();
            
            if($type === null) {
                exit("Constructor parameter '{$param->getName()}' in the $class_name class has no type declaration");
                throw new InvalidArgumentException("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
                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()) {
                exit("Unable to resolve costructor parameter '{$param->getName()}' of type '$type' in the '$class_name' class");
                throw new InvalidArgumentException("Unable to resolve costructor parameter '{$param->getName()}' of type '$type' in the '$class_name' class");
            }
            $dependencies[] = $this->get((string) $type);
        }