corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-23 85f6ec1bc8f094e769835e9836b9fab7fb9e6ace
src/Framework/Container.php
@@ -1,9 +1,10 @@
<?php
declare(strict_types= 1);
namespace Framework;
use ReflectionClass;
use Closure;
use ReflectionNamedType;
use InvalidArgumentException;
class Container {
@@ -29,18 +30,18 @@
            $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($type);
            $dependencies[] = $this->get((string) $type);
        }
        
        return new $class_name(...$dependencies);