Total Complexity | 1 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
19 | abstract class AbstractEvent extends Event implements EventInterface, ShouldBroadcast |
||
20 | { |
||
21 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
|
|||
22 | |||
23 | const WAITING_PAYMENT = 'WAITING_PAYMENT'; |
||
24 | const IN_ANALYSIS = 'IN_ANALYSIS'; |
||
25 | const CONTEST = 'CONTEST'; |
||
26 | const RETURNED = 'RETURNED'; |
||
27 | const AVAILABLE = 'AVAILABLE'; |
||
28 | const DEBITED = 'DEBITED'; |
||
29 | |||
30 | public function broadcastOn() |
||
33 | } |
||
34 | } |