Files
kiri-router/src/Format/ResponseFormat.php
T

18 lines
289 B
PHP
Raw Normal View History

2023-10-17 14:50:46 +08:00
<?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;
}
}