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