Completed
Pull Request — master (#447)
by Marcel
03:06 queued 01:18
created

PresenceChannel::unsubscribe()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 18

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 18
rs 9.6666
c 0
b 0
f 0
cc 2
nc 2
nop 1
1
<?php
2
3
namespace BeyondCode\LaravelWebSockets\WebSockets\Channels;
4
5
use BeyondCode\LaravelWebSockets\Concerns\PresencelyChannelable;
6
7
class PresenceChannel extends Channel
8
{
9
    use PresencelyChannelable;
10
}
11