diff options
Diffstat (limited to 'src/Contracts')
| -rw-r--r-- | src/Contracts/Strategy.php | 6 |
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; } |
