@@ -147,7 +147,7 @@ |
||
147 | 147 | |
148 | 148 | $totalError = 0; |
149 | 149 | |
150 | - $incrementError = function (bool $errorCondition, int $errorOrdinal) use (&$totalError): void { |
|
150 | + $incrementError = function(bool $errorCondition, int $errorOrdinal) use (&$totalError): void { |
|
151 | 151 | $totalError += $errorCondition ? $errorOrdinal : 0; |
152 | 152 | }; |
153 | 153 |
@@ -30,7 +30,7 @@ |
||
30 | 30 | */ |
31 | 31 | public function binaryToHex(string $rdata): string |
32 | 32 | { |
33 | - $hex = array_map(function ($char) { |
|
33 | + $hex = array_map(function($char) { |
|
34 | 34 | return sprintf('0x%02x', ord($char)); |
35 | 35 | }, str_split($rdata)); |
36 | 36 |