mirror of
https://gitlab.com/openlp/website.git
synced 2024-12-22 13:02:50 +00:00
21 lines
375 B
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;
|
|
}
|
|
}
|