Completed
Pull Request — master (#53)
by Pascal
02:24 queued 50s
created

MemberRemoved::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
3
namespace BeyondCode\LaravelWebSockets\Events;
4
5
class MemberRemoved
6
{
7
    public $channel;
8
    public $data;
9
10
    public function __construct($channel, $data)
11
    {
12
        $this->channel = $channel;
13
        $this->data = $data;
14
    }
15
}
16