Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
43 | 7 | public function __construct( |
|
44 | RequestExecutorInterface $executor, |
||
45 | SocketInterface $socket, |
||
46 | $context, |
||
47 | $attempt, |
||
48 | $totalAttempts |
||
49 | ) { |
||
50 | 7 | parent::__construct($executor, $socket, $context, EventType::DATA_ALERT); |
|
51 | 7 | $this->totalAttempts = $totalAttempts; |
|
52 | 7 | $this->attempt = $attempt; |
|
53 | 7 | } |
|
54 | |||
75 |