Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
11 | class CustomerDetailsUpdated |
||
12 | { |
||
13 | use Dispatchable; |
||
14 | use SerializesModels; |
||
1 ignored issue
–
show
|
|||
15 | use InteractsWithSockets; |
||
16 | |||
17 | public $details; |
||
18 | public $cust_id; |
||
19 | |||
20 | /** |
||
21 | * Create a new event instance |
||
22 | */ |
||
23 | public function __construct(Customer $details, $cust_id) |
||
29 |