Passed
Push — dev6 ( c88035...50a53d )
by Ron
17:16
created

NewTipCommentEvent   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
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 NewTipCommentEvent
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\NewTipCommentEvent: $id, $relations, $class, $connection, $keyBy
Loading history...
16
17
    public $tip_id;
18
    public $comment;
19
    public $user;
20
21
    /**
22
     * Create a new event instance.
23
     *
24
     * @return void
25
     */
26
    public function __construct($tip, $comment, $user)
27
    {
28
        $this->tip_id  = $tip;
29
        $this->comment = $comment;
30
        $this->user    = $user;
31
    }
32
33
    /**
34
     * Get the channels the event should broadcast on.
35
     *
36
     * @return \Illuminate\Broadcasting\Channel|array
37
     */
38
    // public function broadcastOn()
39
    // {
40
    //     return new PrivateChannel('channel-name');
41
    // }
42
}
43