12 lines
260 B
PHP
12 lines
260 B
PHP
<?php
|
|
|
|
namespace DistributingCarriers\Infrastructure\Routing;
|
|
|
|
interface IRoute
|
|
{
|
|
public function getMethod(): string;
|
|
public function getPath(): string;
|
|
public function getHandler(): IRequestHandler;
|
|
public function getMiddlewares(): array;
|
|
}
|