summaryrefslogtreecommitdiff
path: root/src/Contracts/Strategy.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Contracts/Strategy.php')
-rw-r--r--src/Contracts/Strategy.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Contracts/Strategy.php b/src/Contracts/Strategy.php
index 7dea459..bf447c3 100644
--- a/src/Contracts/Strategy.php
+++ b/src/Contracts/Strategy.php
@@ -23,4 +23,10 @@ interface Strategy
public function runRoute(RouteCall $call): ResponseInterface;
public function notFound(RequestInterface $request): ResponseInterface;
+
+ /**
+ * @param array<string, mixed> $parameters
+ * @return array<string, string>
+ */
+ public function parseParameters(array $parameters): array;
}