Passed
Push — master ( fa194f...476270 )
by Curtis
10:11 queued 04:43
created

GedComProgressSent   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 34
Duplicated Lines 0 %

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A broadcastOn() 0 3 1
A broadcastAs() 0 3 1
A __construct() 0 5 1
1
<?php
2
3
namespace App\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 GedComProgressSent implements ShouldBroadcast
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 App\Events\GedComProgressSent: $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
    public $slug;
18
    public $total;
19
    public $complete;
20
21
22
    /**
23
     * Create a new event instance.
24
     *
25
     * @return void
26
     */
27
    public function __construct($slug, $total, $complete)
28
    {
29
        $this->slug = $slug;
30
        $this->total = $total;
31
        $this->complete = $complete;
32
    }
33
34
    /**
35
     * Get the channels the event should broadcast on.
36
     *
37
     * @return \Illuminate\Broadcasting\Channel|array
38
     */
39
    public function broadcastOn()
40
    {
41
        return new Channel('gedcom-progress');
42
    }
43
44
    public function broadcastAs()
45
    {
46
        return 'newMessage';
47
    }
48
}
49