| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class CustomerFileUpdatedEvent |
||
| 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 |