for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Divergence\Responders;
class MediaResponse extends Response
{
public function __construct(ResponseBuilder $responseBuilder)
$this
->withDefaults(200, [
'Content-Type' => $responseBuilder->getContentType(),
], $responseBuilder->getBody());
}