Passed
Push — dev6 ( 1f4a51...d7b093 )
by Ron
16:11
created

DownloadedFileEvent   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
eloc 3
c 1
b 0
f 0
dl 0
loc 22
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A broadcastOn() 0 3 1
A __construct() 0 2 1
1
<?php
2
3
namespace App\Events\Home;
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 DownloadedFileEvent
14
{
15
    use Dispatchable, InteractsWithSockets, SerializesModels;
1 ignored issue
show
introduced by
The trait Illuminate\Queue\SerializesModels requires some properties which are not provided by App\Events\Home\DownloadedFileEvent: $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
    /**
18
     * Create a new event instance.
19
     *
20
     * @return void
21
     */
22
    public function __construct()
23
    {
24
        //
25
    }
26
27
    /**
28
     * Get the channels the event should broadcast on.
29
     *
30
     * @return \Illuminate\Broadcasting\Channel|array
31
     */
32
    public function broadcastOn()
33
    {
34
        return new PrivateChannel('channel-name');
35
    }
36
}
37