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