Files
kiri-core/HttpServer/IInterface/IFormatter.php
T
as2252258@163.com 682246df28 modify
2021-08-11 01:04:57 +08:00

34 lines
435 B
PHP

<?php
declare(strict_types=1);
/**
* Created by PhpStorm.
* User: whwyy
* Date: 2018/4/8 0008
* Time: 17:29
*/
namespace HttpServer\IInterface;
/**
* Interface IFormatter
* @package Kiri\Kiri\Http\Formatter
*/
interface IFormatter
{
/**
* @param $context
* @return static
*/
public function send($context): static;
/**
* @return mixed
*/
public function getData(): mixed;
public function clear(): void;
}