1 | <?php |
||
2 | |||
3 | namespace Lenius\LaravelEcommerce\Events; |
||
4 | |||
5 | use Illuminate\Broadcasting\InteractsWithSockets; |
||
6 | use Illuminate\Foundation\Events\Dispatchable; |
||
7 | use Illuminate\Queue\SerializesModels; |
||
8 | |||
9 | class CartDestroyed |
||
10 | { |
||
11 | use Dispatchable; |
||
12 | use InteractsWithSockets; |
||
13 | use SerializesModels; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
14 | |||
15 | /** |
||
16 | * Create a new event instance. |
||
17 | * |
||
18 | * @return void |
||
19 | */ |
||
20 | 4 | public function __construct() |
|
21 | { |
||
22 | // |
||
23 | 4 | } |
|
24 | } |
||
25 |