Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
13 | class CustomerEquipmentUpdatedEvent |
||
14 | { |
||
15 | use Dispatchable; |
||
16 | use SerializesModels; |
||
1 ignored issue
–
show
|
|||
17 | use InteractsWithSockets; |
||
18 | |||
19 | public $cust; |
||
20 | public $equip; |
||
21 | |||
22 | /** |
||
23 | * Create a new event instance |
||
24 | */ |
||
25 | public function __construct(Customer $cust, CustomerEquipment $equip) |
||
31 |