|
Ultima modificación |
Ver Log
|
| Rev |
Autor |
Línea Nro. |
Línea |
| 1441 |
ariadna |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
declare(strict_types=1);
|
|
|
4 |
|
|
|
5 |
namespace Slim\Interfaces;
|
|
|
6 |
|
|
|
7 |
use Slim\Routing\RoutingResults;
|
|
|
8 |
|
|
|
9 |
interface RouteResolverInterface
|
|
|
10 |
{
|
|
|
11 |
/**
|
|
|
12 |
* @param string $uri Should be ServerRequestInterface::getUri()->getPath()
|
|
|
13 |
*/
|
|
|
14 |
public function computeRoutingResults(string $uri, string $method): RoutingResults;
|
|
|
15 |
|
|
|
16 |
public function resolveRoute(string $identifier): RouteInterface;
|
|
|
17 |
}
|