| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class CustomerLinkedEvent |
||
| 10 | { |
||
| 11 | use Dispatchable; |
||
| 12 | use SerializesModels; |
||
|
1 ignored issue
–
show
|
|||
| 13 | use InteractsWithSockets; |
||
| 14 | |||
| 15 | public $added; |
||
| 16 | public $cust_id; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Create a new event instance |
||
| 20 | */ |
||
| 21 | public function __construct($cust_id, $added) |
||
| 27 |