Files
midi-php/addons/epay/library/v2/Yansongda/Pay/Events/ApiRequested.php

32 lines
499 B
PHP
Raw Normal View History

2025-08-13 10:43:56 +08:00
<?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);
}
}