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
+18
View File
@@ -0,0 +1,18 @@
<?php
namespace Kiri\Router\Format;
use Psr\Http\Message\ResponseInterface;
class ResponseFormat implements IFormat
{
/**
* @inheritDoc
*/
public function call($result): ResponseInterface
{
// TODO: Implement call() method.
return $result;
}
}