Completed
Push — master ( 556f43...aecbfe )
by Marcel
01:49
created

ConnectionsOverCapacity   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 1
1
<?php
2
3
namespace BeyondCode\LaravelWebSockets\WebSockets\Exceptions;
4
5
class ConnectionsOverCapacity extends WebSocketException
6
{
7
    public function __construct()
8
    {
9
        $this->message = 'Over capacity';
10
11
        // @See https://pusher.com/docs/pusher_protocol#error-codes
12
        // Indicates an error resulting in the connection
13
        // being closed by Pusher, and that the client may reconnect after 1s or more.
14
        $this->code = 4100;
15
    }
16
}
17