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