18 lines
229 B
PHP
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;
|
|
|
|
}
|