forked from PHP/Router
10 lines
238 B
PHP
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;
|
|
}
|