Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
25 | 40 | public function __construct(MacAddress $target, bool $ackRequired, bool $responseRequired, int $sequenceNo) |
|
26 | { |
||
27 | 40 | $this->target = $target; |
|
28 | 40 | $this->ackRequired = $ackRequired; |
|
29 | 40 | $this->responseRequired = $responseRequired; |
|
30 | 40 | $this->sequenceNo = validate_uint8('Sequence number', $sequenceNo); |
|
31 | } |
||
53 |