corso https://vola.udemy.com/course/php-mvc-from-scratch/learn/lecture/40931984#overview
filippo.bertilotti
2024-05-27 27699b4cdf7b150acaf8b3d36bee7b3d844682a3
1
2
3
4
5
6
7
8
9
10
11
<?php
 
declare(strict_types= 1);
 
namespace Framework;
 
class Request {
    public function __construct(public string $uri, public string $method) {
        
    }
}