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