for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Http\Message\Formatter;
use Http\Message\Formatter;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
/**
* Normalize a request or a response into a string or an array.
*
* @author Joel Wurtz <[email protected]>
* @author Márk Sági-Kazár <[email protected]>
*/
class SimpleFormatter implements Formatter
{
* {@inheritdoc}
public function formatRequest(RequestInterface $request)
return sprintf(
'%s %s %s',
$request->getMethod(),
$request->getUri()->__toString(),
$request->getProtocolVersion()
);
}
public function formatResponse(ResponseInterface $response)
$response->getStatusCode(),
$response->getReasonPhrase(),
$response->getProtocolVersion()