agorlov/lipid

View on GitHub
src/Response.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Lipid;

interface Response
{
    public function print(): void;
    public function withBody(string $body): Response;
    public function withHeaders(array $headers): Response;
}