diff options
| author | David T. Sadler <davidtsadler@googlemail.com> | 2026-08-09 20:04:39 +0100 |
|---|---|---|
| committer | David T. Sadler <davidtsadler@googlemail.com> | 2026-08-09 20:04:39 +0100 |
| commit | b9c4f1dcf1333c14e2d1b67561ec7a5f955baa6e (patch) | |
| tree | 610536953be739d0778f19c90c477f080a24718a /src/Request.php | |
Diffstat (limited to 'src/Request.php')
| -rw-r--r-- | src/Request.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Request.php b/src/Request.php new file mode 100644 index 0000000..9b4bd5d --- /dev/null +++ b/src/Request.php @@ -0,0 +1,17 @@ +<?php + +declare(strict_types=1); + +namespace TCB; + +final class Request +{ + public function __construct( + public readonly string $method, + public readonly string $path, + public readonly string $httpVersion, + public readonly array $headers, + public readonly array $params, + public readonly string $body, + ) {} +} |
