aboutsummaryrefslogtreecommitdiff
path: root/tests/Fixtures/TestRequest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Fixtures/TestRequest.php')
-rw-r--r--tests/Fixtures/TestRequest.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/tests/Fixtures/TestRequest.php b/tests/Fixtures/TestRequest.php
new file mode 100644
index 0000000..c449610
--- /dev/null
+++ b/tests/Fixtures/TestRequest.php
@@ -0,0 +1,40 @@
+<?php
+
+declare(strict_types=1);
+
+namespace BrettParson\MiniRoute\Tests\Fixtures;
+
+use BrettParson\MiniRoute\Http\RequestInterface;
+
+final class TestRequest implements RequestInterface
+{
+ /**
+ * @param array<string, string> $params
+ */
+ public function __construct(
+ private readonly string $method,
+ private readonly string $path,
+ private readonly array $params = [],
+ ) {
+ }
+
+ public function method(): string
+ {
+ return $this->method;
+ }
+
+ public function path(): string
+ {
+ return $this->path;
+ }
+
+ public function param(string $name, string $default = ''): string
+ {
+ return $this->params[$name] ?? $default;
+ }
+
+ public function withParams(array $params): RequestInterface
+ {
+ return new self($this->method, $this->path, $params);
+ }
+}