Passed
Push — master ( 91d531...b6fb07 )
by Aranea
33:49 queued 18:53
created
src/Electrum.php 1 patch
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,9 @@
 block discarded – undo
113 113
     {
114 114
         $response = $this->sendRequest('onchain_history');
115 115
         $result = @json_decode($response);
116
-        if (json_last_error() === 0) return $result;
116
+        if (json_last_error() === 0) {
117
+            return $result;
118
+        }
117 119
         return $response;
118 120
     }
119 121
 
Please login to merge, or discard this patch.