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