Passed
Push — master ( 8b9ab0...4071e1 )
by Jeroen
01:41
created

ConnectionOptions   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 8
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Jerodev\PhpIrcClient\Options;
4
5
class ConnectionOptions
6
{
7
    /** @var int */
8
    public $floodProtectionDelay;
9
10
    public function __construct()
11
    {
12
        $this->floodProtectionDelay = 0;
13
    }
14
}