Passed
Branch main (6b962c)
by Pouya
02:50
created
src/Objects/AccountResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,9 @@
 block discarded – undo
47 47
      */
48 48
 
49 49
     public function __construct($params){
50
-        if(is_null($params))
51
-            return;
50
+        if(is_null($params)) {
51
+                    return;
52
+        }
52 53
         $this->balance = data_get($params,'balance');
53 54
         $this->label = data_get($params,'label');
54 55
         $this->index = data_get($params,'index');
Please login to merge, or discard this patch.