dev/src/RouterInterface.php
Valithor Obsidion 1eed623c18 Strict types
2024-12-25 10:50:49 -05:00

10 lines
238 B
PHP

<?php declare(strict_types=1);
namespace Sharkk\Router;
interface RouterInterface
{
public function add(string $method, string $route, callable $handler): RouterInterface;
public function lookup(string $method, string $uri): array;
}