corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-28 0b87390cf225ee1053f1d5986900784d39110568
src/Framework/Request.php
@@ -5,8 +5,26 @@
namespace Framework;
class Request {
    public function __construct(public string $uri, public string $method) {
    public function __construct(public string $uri,
                                public string $method,
                                public array $get,
                                public array $post,
                                public array $files,
                                public array $cookie,
                                public array $server) {
        
    }
    public static function createFromGlobals() {
        return new static(
            $_SERVER["REQUEST_URI"],
            $_SERVER["REQUEST_METHOD"],
            $_GET,
            $_POST,
            $_FILES,
            $_COOKIE,
            $_SERVER
        );
    }
}