nginxsonarrradarrplexorganizrdashboardapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmark
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
623 B
32 lines
623 B
<?php
|
|
|
|
namespace Http\Message;
|
|
|
|
use Psr\Http\Message\RequestInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
/**
|
|
* Formats a request and/or a response as a string.
|
|
*
|
|
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
|
|
*/
|
|
interface Formatter
|
|
{
|
|
/**
|
|
* Formats a request.
|
|
*
|
|
* @param RequestInterface $request
|
|
*
|
|
* @return string
|
|
*/
|
|
public function formatRequest(RequestInterface $request);
|
|
|
|
/**
|
|
* Formats a response.
|
|
*
|
|
* @param ResponseInterface $response
|
|
*
|
|
* @return string
|
|
*/
|
|
public function formatResponse(ResponseInterface $response);
|
|
}
|
|
|