public function emit()

in src/Emitter.php [30:40]


    public function emit(ResponseInterface $response): void
    {
        // Only send headers if they have not already been sent
        if (!headers_sent()) {
            $this->statusLine($response);
            $this->headers($response);
        }

        // Send the body.
        echo $response->getBody();
    }