for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Aeq\Hal\Client\Event;
use Aeq\Hal\Event\EventInterface;
use Psr\Http\Message\ResponseInterface;
class PostClientRequestEvent implements EventInterface
{
/**
* @var ResponseInterface
*/
private $response;
* @param ResponseInterface $response
public function __construct(ResponseInterface $response)
$this->response = $response;
}
* @return ResponseInterface
public function getResponse()
return $this->response;