init
- 框架初始化 - 安装插件 - 修复PHP8.4报错
This commit is contained in:
23
addons/epay/library/v2/Yansongda/Pay/Events/PayStarting.php
Normal file
23
addons/epay/library/v2/Yansongda/Pay/Events/PayStarting.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace Yansongda\Pay\Events;
|
||||
|
||||
class PayStarting extends Event
|
||||
{
|
||||
/**
|
||||
* Params.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public $params;
|
||||
|
||||
/**
|
||||
* Bootstrap.
|
||||
*/
|
||||
public function __construct(string $driver, ?string $gateway, ?array $params)
|
||||
{
|
||||
$this->params = $params;
|
||||
|
||||
parent::__construct($driver, $gateway);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user