for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Core\Utils;
use Psr\Http\Message\ResponseInterface;
class ResponseProxy
{
/**
* @var ResponseInterface
*/
private $response;
public function setResponse(ResponseInterface $response)
$this->response = $response;
}
public function getResponse()
return $this->response;