Conditions | 2 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
38 | 57 | public function __construct( |
|
39 | RequestExecutorInterface $executor, |
||
40 | SocketInterface $socket, |
||
41 | $context, |
||
42 | FrameInterface $frame, |
||
43 | $isOutOfBand = false |
||
44 | ) { |
||
45 | 57 | parent::__construct($executor, $socket, $context, $isOutOfBand ? EventType::OOB : EventType::READ); |
|
46 | 57 | $this->frame = $frame; |
|
47 | 57 | } |
|
48 | |||
69 |