dev/src/RouterInterface.php

10 lines
238 B
PHP
Raw Normal View History

2024-12-25 09:50:49 -06:00
<?php declare(strict_types=1);
2024-09-07 13:02:52 -05:00
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
}