2023-10-17 14:50:46 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Kiri\Router\Format;
|
|
|
|
|
|
|
|
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
|
|
|
|
|
|
interface IFormat
|
|
|
|
|
{
|
|
|
|
|
|
2024-03-01 14:46:50 +08:00
|
|
|
|
2023-10-17 14:50:46 +08:00
|
|
|
/**
|
|
|
|
|
* @param $result
|
|
|
|
|
* @return ResponseInterface
|
|
|
|
|
*/
|
|
|
|
|
public function call($result): ResponseInterface;
|
|
|
|
|
|
|
|
|
|
}
|