Files
kiri-core/http-core/Constrict/Emitter.php
T
2021-10-25 18:25:14 +08:00

18 lines
229 B
PHP

<?php
namespace Http\Constrict;
interface Emitter
{
/**
* @param mixed $response
* @param ResponseInterface $emitter
* @return mixed
*/
public function sender(mixed $response, ResponseInterface $emitter): void;
}