dev/src/RouterInterface.php

10 lines
213 B
PHP
Raw Normal View History

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