summaryrefslogtreecommitdiff
path: root/tests/Utils/TestCall.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Utils/TestCall.php')
-rw-r--r--tests/Utils/TestCall.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/Utils/TestCall.php b/tests/Utils/TestCall.php
new file mode 100644
index 0000000..971e6a7
--- /dev/null
+++ b/tests/Utils/TestCall.php
@@ -0,0 +1,16 @@
+<?php
+
+declare(strict_types=1);
+
+namespace Lightscale\Router\Test\Utils;
+
+readonly class TestCall
+{
+ /**
+ * @param mixed[] $args
+ */
+ public function __construct(
+ public array $args,
+ public mixed $return,
+ ){}
+}