Issues (10)

src/Events/CartDestroyed.php (1 issue)

Severity
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
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Lenius\LaravelEcommerce\Events\CartDestroyed: $collectionClass, $id, $relations, $class, $connection, $keyBy
Loading history...
14
15
    /**
16
     * Create a new event instance.
17
     *
18
     * @return void
19
     */
20 4
    public function __construct()
21
    {
22
        //
23 4
    }
24
}
25