12345678910111213141516171819202122 |
- <?php
- declare(strict_types=1);
- namespace Hyperf\Contract;
- use Psr\Http\Message\ResponseInterface;
- interface ResponseEmitterInterface
- {
-
- public function emit(ResponseInterface $response, $connection, bool $withContent = true);
- }
|