Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
7 | class PaymentGateway extends Event |
||
8 | { |
||
9 | use SerializesModels; |
||
|
|||
10 | |||
11 | public $para; |
||
12 | |||
13 | /** |
||
14 | * Create a new event instance. |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function __construct($para) |
||
19 | { |
||
20 | $this->para = $para; |
||
21 | } |
||
22 | |||
23 | /** |
||
24 | * Get the channels the event should be broadcast on. |
||
25 | * |
||
26 | * @return array |
||
27 | */ |
||
28 | public function broadcastOn() |
||
31 | } |
||
32 | } |
||
33 |