@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | public function __invoke(callable $handler) |
| 26 | 26 | { |
| 27 | - return function (RequestInterface $request, array $options) use ($handler) { |
|
| 27 | + return function(RequestInterface $request, array $options) use ($handler) { |
|
| 28 | 28 | $transaction = $this->agent->getTransaction(); |
| 29 | 29 | |
| 30 | 30 | if ($transaction !== null) { |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | */ |
| 21 | 21 | public static function generateRandomBitsInHex(int $bits): string |
| 22 | 22 | { |
| 23 | - return bin2hex(random_bytes($bits/8)); |
|
| 23 | + return bin2hex(random_bytes($bits / 8)); |
|
| 24 | 24 | } |
| 25 | 25 | |
| 26 | 26 | /** |