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