Passed
Push — master ( 5b31a6...3a97b6 )
by Aranea
10:26
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('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.