Files
kiri-router/src/Format/IFormat.php
T
2024-03-01 14:46:50 +08:00

17 lines
228 B
PHP

<?php
namespace Kiri\Router\Format;
use Psr\Http\Message\ResponseInterface;
interface IFormat
{
/**
* @param $result
* @return ResponseInterface
*/
public function call($result): ResponseInterface;
}