dev/src/Router.php

10 lines
195 B
PHP
Raw Normal View History

2024-09-07 13:02:52 -05:00
<?php
namespace Sharkk\Router;
interface Router
2024-09-07 13:02:52 -05:00
{
public function add(string $method, string $route, callable $handler): Router;
public function lookup(string $method, string $uri): array;
2024-09-07 13:02:52 -05:00
}