friendship ended with social-app. php is my new best friend
1<?php
2/**
3 * Interface ResponseEmitterInterface
4 *
5 * @created 22.10.2022
6 * @author smiley <smiley@chillerlan.net>
7 * @copyright 2022 smiley
8 * @license MIT
9 */
10declare(strict_types=1);
11
12namespace chillerlan\HTTP\Utils\Emitter;
13
14interface ResponseEmitterInterface{
15
16 /**
17 * Emits a PSR-7 response.
18 */
19 public function emit():void;
20
21}