Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
36 | 1 | public function __construct( |
|
37 | SocketInterface $socket, |
||
38 | $speed, |
||
39 | $duration, |
||
40 | $message = '', |
||
41 | $code = 0, |
||
42 | \Exception $previous = null |
||
43 | ) { |
||
44 | 1 | parent::__construct($socket, $message, $code, $previous); |
|
45 | 1 | $this->speed = $speed; |
|
46 | 1 | $this->duration = $duration; |
|
47 | 1 | } |
|
48 | |||
88 |