peakphp/framework

View on GitHub
src/Blueprint/Http/ResponseEmitter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

declare(strict_types=1);

namespace Peak\Blueprint\Http;

use Psr\Http\Message\ResponseInterface;

interface ResponseEmitter
{
    /**
     * @param ResponseInterface $response
     * @return mixed
     */
    public function emit(ResponseInterface $response);
}