progetto fatto precedentemente adattato al framework creato con il corso
filippo.bertilotti
2024-06-12 5dd12c2939637d0af09bb385f12f24868bfc17c7
commit | author | age
15e03a 1 <?php
F 2
3 declare(strict_types= 1);
4 namespace Framework;
5
6 interface RequestHandlerInterface {
7     public function handle(Request $request) : Response;
8 }