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

MemberRemoved   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 11
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 11
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
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