2024-09-07 13:02:52 -05:00
|
|
|
<?php
|
|
|
|
|
2024-09-12 09:28:53 -05:00
|
|
|
namespace Sharkk\Router;
|
|
|
|
|
2024-09-20 11:41:49 -05:00
|
|
|
interface RouterInterface
|
2024-09-07 13:02:52 -05:00
|
|
|
{
|
2024-09-20 11:41:49 -05:00
|
|
|
public function add(string $method, string $route, callable $handler): RouterInterface;
|
2024-09-12 10:00:32 -05:00
|
|
|
public function lookup(string $method, string $uri): array;
|
2024-09-07 13:02:52 -05:00
|
|
|
}
|