Files
kiri-core/http-server/Constrict/Emitter.php
T

19 lines
271 B
PHP
Raw Normal View History

2021-08-12 15:07:12 +08:00
<?php
namespace Server\Constrict;
2021-08-28 01:25:24 +08:00
use Psr\Http\Message\ResponseInterface;
2021-08-12 15:07:12 +08:00
interface Emitter
{
/**
* @param mixed $response
* @param ResponseInterface $emitter
* @return mixed
*/
public function sender(mixed $response, ResponseInterface $emitter): void;
}