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