12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- namespace Yansongda\Pay\Events;
- use Symfony\Contracts\EventDispatcher\Event as SymfonyEvent;
- class Event extends SymfonyEvent
- {
-
- public $driver;
-
- public $gateway;
-
- public $attributes;
-
- public function __construct(string $driver, string $gateway)
- {
- $this->driver = $driver;
- $this->gateway = $gateway;
- }
- }
|