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.
23 lines
361 B
23 lines
361 B
<?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);
|
|
}
|
|
}
|
|
|