12345678910111213141516171819202122232425262728293031 |
- <?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);
- }
- }
|