Files
kiri-container/Interface/ResponseEmitterInterface.php
T

21 lines
312 B
PHP
Raw Normal View History

2023-04-15 23:32:00 +08:00
<?php
2023-04-16 01:45:33 +08:00
declare(strict_types=1);
2023-04-15 23:32:00 +08:00
namespace Kiri\Di\Interface;
use Psr\Http\Message\ResponseInterface;
2023-04-24 10:54:56 +08:00
interface ResponseEmitterInterface
2023-04-15 23:32:00 +08:00
{
/**
* @param ResponseInterface $proxy
* @param object $response
* @return void
*/
public function sender(ResponseInterface $proxy, object $response): void;
}