You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
499 B
31 lines
499 B
<?php
|
|
|
|
namespace Yansongda\Pay\Events;
|
|
|
|
class ApiRequested extends Event
|
|
{
|
|
/**
|
|
* Endpoint.
|
|
*
|
|
* @var string
|
|
*/
|
|
public $endpoint;
|
|
|
|
/**
|
|
* Result.
|
|
*
|
|
* @var array
|
|
*/
|
|
public $result;
|
|
|
|
/**
|
|
* Bootstrap.
|
|
*/
|
|
public function __construct(string $driver, string $gateway, string $endpoint, array $result)
|
|
{
|
|
$this->endpoint = $endpoint;
|
|
$this->result = $result;
|
|
|
|
parent::__construct($driver, $gateway);
|
|
}
|
|
}
|
|
|