Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | 2 | public function __construct(string $type, string $rdata, int $code = 0, \Throwable $previous = null) |
|
19 | { |
||
20 | 2 | $message = sprintf('Unable to decode %s record rdata from binary data "%s"', $type, $this->binaryToHex($rdata)); |
|
21 | 2 | parent::__construct($message, $code, $previous); |
|
22 | 2 | } |
|
40 |