for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace SlevomatCsobGateway\Api;
use RuntimeException;
class InvalidSignatureException extends RuntimeException
{
/** @var mixed[] */
private $responseData;
/**
* @param mixed[] $responseData
*/
public function __construct(array $responseData)
parent::__construct('Invalid signature.');
$this->responseData = $responseData;
}
* @return mixed[]
public function getResponseData(): array
return $this->responseData;