| 12345678910111213141516171819202122232425262728293031323334353637383940 | <?phpnamespace Yansongda\Pay\Events;use Symfony\Contracts\EventDispatcher\Event as SymfonyEvent;class Event extends SymfonyEvent{    /**     * Driver.     *     * @var string     */    public $driver;    /**     * Method.     *     * @var string     */    public $gateway;    /**     * Extra attributes.     *     * @var mixed     */    public $attributes;    /**     * Bootstrap.     *     * @author yansongda <me@yansongda.cn>     */    public function __construct(string $driver, string $gateway)    {        $this->driver = $driver;        $this->gateway = $gateway;    }}
 |