dev/Router.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;
}