@@ -29,7 +29,7 @@ |
||
| 29 | 29 | * @param string $operation |
| 30 | 30 | * @param callable $callback |
| 31 | 31 | */ |
| 32 | -$handle = function ($operation, $callback) use ($identity, $encryption, $public_key) { |
|
| 32 | +$handle = function($operation, $callback) use ($identity, $encryption, $public_key) { |
|
| 33 | 33 | try { |
| 34 | 34 | $request = ServerRequestFactory::fromGlobals(); |
| 35 | 35 | $transaction = new Transaction($identity, $encryption, $request); |
@@ -103,7 +103,7 @@ |
||
| 103 | 103 | $result = rtrim($result, "\0"); |
| 104 | 104 | |
| 105 | 105 | $decodedJson = json_decode($result, true); |
| 106 | - $result = null!==$decodedJson ? $decodedJson : $result; |
|
| 106 | + $result = null !== $decodedJson ? $decodedJson : $result; |
|
| 107 | 107 | |
| 108 | 108 | $this->logger->debug('Uncrypting message', [$message, $result]); |
| 109 | 109 | |