Files
kiri-core/Server/Constrict/Emitter.php
T
2021-08-12 15:07:12 +08:00

19 lines
261 B
PHP

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