1
0
mirror of https://gitlab.com/openlp/website.git synced 2024-07-26 10:18:21 +00:00
website/files/stripe/lib/Error/SignatureVerification.php

21 lines
375 B
PHP

<?php
namespace Stripe\Error;
class SignatureVerification extends Base
{
public function __construct(
$message,
$sigHeader,
$httpBody = null
) {
parent::__construct($message, null, $httpBody, null, null);
$this->sigHeader = $sigHeader;
}
public function getSigHeader()
{
return $this->sigHeader;
}
}