forked from PHP/Router
7 lines
169 B
PHP
7 lines
169 B
PHP
<?php
|
|
|
|
interface Router {
|
|
public function add(string $method, string $route, callable $handler): Router;
|
|
public function lookup(string $method, string $uri): array;
|
|
}
|