Issues (96)

src/Events/FileScan.php (1 issue)

Severity
1
<?php
2
3
namespace Ikechukwukalu\Clamavfileupload\Events;
4
5
use Illuminate\Broadcasting\Channel;
6
use Illuminate\Broadcasting\InteractsWithSockets;
7
use Illuminate\Broadcasting\PresenceChannel;
8
use Illuminate\Broadcasting\PrivateChannel;
9
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
10
use Illuminate\Foundation\Events\Dispatchable;
11
use Illuminate\Queue\SerializesModels;
12
13
class FileScan
14
{
15
    use Dispatchable, InteractsWithSockets, SerializesModels;
0 ignored issues
show
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Ikechukwukalu\Clamavfileupload\Events\FileScan: $collectionClass, $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
    public array $scanData;
18
19
    /**
20
     * Create a new event instance.
21
     *
22
     * @param  array  $scanData
23
     */
24
    public function __construct(array $scanData)
25
    {
26
        $this->scanData = $scanData;
27
    }
28
29
    /**
30
     * Get the channels the event should broadcast on.
31
     *
32
     * @return array<int, \Illuminate\Broadcasting\Channel>
33
     */
34
    public function broadcastOn(): array
35
    {
36
        return [
37
            new PrivateChannel('channel-name'),
38
        ];
39
    }
40
}
41