This commit is contained in:
2023-10-17 14:50:46 +08:00
parent 30da8e7b37
commit bfbdb1e7ce
12 changed files with 251 additions and 57 deletions
+16
View File
@@ -0,0 +1,16 @@
<?php
namespace Kiri\Router\Format;
use Psr\Http\Message\ResponseInterface;
interface IFormat
{
/**
* @param $result
* @return ResponseInterface
*/
public function call($result): ResponseInterface;
}