Passed
Branch main (ac09e4)
by Pouya
03:02
created
src/Objects/BalanceCallback.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,9 @@
 block discarded – undo
17 17
      */
18 18
 
19 19
     public function __construct($params){
20
-        if(is_null($params))
21
-            return;
20
+        if(is_null($params)) {
21
+                    return;
22
+        }
22 23
         foreach ($params as $key => $value){
23 24
             $this->{$key} = $value;
24 25
         }
Please login to merge, or discard this patch.
src/Objects/WalletResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,9 @@
 block discarded – undo
23 23
      */
24 24
 
25 25
     public function __construct($params){
26
-        if(is_null($params))
27
-            return;
26
+        if(is_null($params)) {
27
+                    return;
28
+        }
28 29
         $this->guid = data_get($params,'balance');
29 30
         $this->address = data_get($params,'address');
30 31
         $this->label = data_get($params,'label');
Please login to merge, or discard this patch.
src/Objects/AccountResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,9 @@
 block discarded – undo
56 56
      */
57 57
 
58 58
     public function __construct($params){
59
-        if(is_null($params))
60
-            return;
59
+        if(is_null($params)) {
60
+                    return;
61
+        }
61 62
         $this->balance = data_get($params,'balance');
62 63
         $this->label = data_get($params,'address');
63 64
         $this->index = data_get($params,'label');
Please login to merge, or discard this patch.
src/Objects/NotificationResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,8 +14,9 @@
 block discarded – undo
14 14
     public $onNotification;
15 15
 
16 16
     public function __construct($params){
17
-        if(is_null($params))
18
-            return;
17
+        if(is_null($params)) {
18
+                    return;
19
+        }
19 20
         foreach ($params as $key => $value){
20 21
             $this->{$key} = $value;
21 22
         }
Please login to merge, or discard this patch.
src/Objects/BlockCallback.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,9 @@
 block discarded – undo
13 13
     public $size;
14 14
 
15 15
     public function __construct($params){
16
-        if(is_null($params))
17
-            return;
16
+        if(is_null($params)) {
17
+                    return;
18
+        }
18 19
         foreach ($params as $key => $value){
19 20
             $this->{$key} = $value;
20 21
         }
Please login to merge, or discard this patch.
src/Objects/LogResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,8 +24,9 @@
 block discarded – undo
24 24
     public $response_code;
25 25
 
26 26
     public function __construct($params){
27
-        if(is_null($params))
28
-            return;
27
+        if(is_null($params)) {
28
+                    return;
29
+        }
29 30
         $this->callback = data_get($params,'callback');
30 31
         $this->called_at = data_get($params,'called_at');
31 32
         $this->raw_response = data_get($params,'raw_response');
Please login to merge, or discard this patch.
src/Objects/Cache.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,9 @@
 block discarded – undo
10 10
     public $changeAccount;
11 11
 
12 12
     public function __construct($params){
13
-        if(is_null($params))
14
-            return;
13
+        if(is_null($params)) {
14
+                    return;
15
+        }
15 16
         $this->receiveAccount = data_get($params,'receiveAccount');
16 17
         $this->changeAccount = new Cache(data_get($params,'changeAccount'));
17 18
     }
Please login to merge, or discard this patch.
src/Objects/PaymentResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,8 +36,9 @@
 block discarded – undo
36 36
      */
37 37
 
38 38
     public function __construct($params){
39
-        if(is_null($params))
40
-            return;
39
+        if(is_null($params)) {
40
+                    return;
41
+        }
41 42
         $this->to = data_get($params,'to');
42 43
         $this->from = data_get($params,'from');
43 44
         $this->amount = data_get($params,'amount');
Please login to merge, or discard this patch.
src/Objects/ReceiveResponse.php 1 patch
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,9 @@
 block discarded – undo
19 19
     public $callback;
20 20
 
21 21
     public function __construct($params){
22
-        if(is_null($params))
23
-            return;
22
+        if(is_null($params)) {
23
+                    return;
24
+        }
24 25
         $this->address = data_get($params,'address');
25 26
         $this->index = data_get($params,'index');
26 27
         $this->callback = data_get($params,'callback');
Please login to merge, or discard this patch.