chore: complete update

This commit is contained in:
2025-07-17 16:24:20 +02:00
parent 899227b0a4
commit 64a7051137
1300 changed files with 85570 additions and 2756 deletions

View File

@@ -4,19 +4,23 @@ declare(strict_types=1);
namespace App\Framework\Http;
use App\Framework\Http\Cookies\Cookies;
interface Request
{
public Headers $headers{
get;
}
public Headers $headers { get; }
public string $body{
get;
}
public RequestId $id {get; }
public HttpMethod $method{
get;
}
public string $body { get; }
public Method $method { get; }
public array $queryParams { get; }
public string $path { get; }
public Cookies $cookies { get; }
public ServerEnvironment $server {get;}
}