34 lines
559 B
PHP
34 lines
559 B
PHP
|
<?php
|
||
|
|
||
|
namespace Yansongda\Pay\Events;
|
||
|
|
||
|
class MethodCalled extends Event
|
||
|
{
|
||
|
/**
|
||
|
* endpoint.
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
public $endpoint;
|
||
|
|
||
|
/**
|
||
|
* payload.
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
public $payload;
|
||
|
|
||
|
/**
|
||
|
* Bootstrap.
|
||
|
*
|
||
|
* @author yansongda <me@yansongda.cn>
|
||
|
*/
|
||
|
public function __construct(string $driver, string $gateway, string $endpoint, array $payload = [])
|
||
|
{
|
||
|
$this->endpoint = $endpoint;
|
||
|
$this->payload = $payload;
|
||
|
|
||
|
parent::__construct($driver, $gateway);
|
||
|
}
|
||
|
}
|