diff options
| author | Sam Light <sam@lightscale.co.uk> | 2026-06-10 19:00:32 +0100 |
|---|---|---|
| committer | Sam Light <sam@lightscale.co.uk> | 2026-06-10 19:00:32 +0100 |
| commit | 8c0efd0d9317ad92bd55cd6afcd41bdbab827bf8 (patch) | |
| tree | c654456753e90ab38b7bcb89ece3381ad7a40f4a /src/Contracts | |
| parent | 5fe7c87967ff29c4a8f03a9186918d8359f4887e (diff) | |
Make basic routing work
Diffstat (limited to 'src/Contracts')
| -rw-r--r-- | src/Contracts/Strategy.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Contracts/Strategy.php b/src/Contracts/Strategy.php new file mode 100644 index 0000000..81d6ec3 --- /dev/null +++ b/src/Contracts/Strategy.php @@ -0,0 +1,15 @@ +<?php + +declare(strict_types=1); + +namespace Lightscale\Router\Contracts; + +use Lightscale\Router\RouteCall; +use Psr\Http\Message\RequestInterface; +use Psr\Http\Message\ResponseInterface; + +interface Strategy +{ + public function runRoute(RouteCall $call): ResponseInterface; + public function notFound(RequestInterface $request): ResponseInterface; +} |
