Passed
Push — main ( 7edd23...391368 )
by ikechukwu
02:50
created

ClamavEvent::broadcastOn()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 0
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 ClamavEvent
14
{
15
    use Dispatchable, InteractsWithSockets, SerializesModels;
0 ignored issues
show
introduced by
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by Ikechukwukalu\Clamavfileupload\Events\ClamavEvent: $collectionClass, $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
    /**
18
     * Create a new event instance.
19
     */
20
    public function __construct()
21
    {
22
        //
23
    }
24
25
    /**
26
     * Get the channels the event should broadcast on.
27
     *
28
     * @return array<int, \Illuminate\Broadcasting\Channel>
29
     */
30
    public function broadcastOn(): array
31
    {
32
        return [
33
            new PrivateChannel('channel-name'),
34
        ];
35
    }
36
}
37