| 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 | 38 | public function __construct(MacAddress $target, bool $ackRequired, bool $responseRequired, int $sequenceNo) |
|
| 26 | { |
||
| 27 | 38 | $this->target = $target; |
|
| 28 | 38 | $this->ackRequired = $ackRequired; |
|
| 29 | 38 | $this->responseRequired = $responseRequired; |
|
| 30 | 38 | $this->sequenceNo = validate_uint8('Sequence number', $sequenceNo); |
|
| 31 | } |
||
| 53 |