Files
yusheng-php/addons/epay/library/v2/Yansongda/Pay/Events/SignFailed.php

26 lines
409 B
PHP
Raw Normal View History

2025-08-07 20:21:47 +08:00
<?php
namespace Yansongda\Pay\Events;
class SignFailed extends Event
{
/**
* Received data.
*
* @var array
*/
public $data;
/**
* Bootstrap.
*
* @author yansongda <me@yansongda.cn>
*/
public function __construct(string $driver, string $gateway, array $data)
{
$this->data = $data;
parent::__construct($driver, $gateway);
}
}