Passed
Push — master ( f980d8...9eb105 )
by Tim
09:53
created
src/Customer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
      */
21 21
     public static function validate($customerCode)
22 22
     {
23
-        $url = static::classUrl().'/{$customerCode}/identification';
23
+        $url = static::classUrl() . '/{$customerCode}/identification';
24 24
 
25 25
         return static::staticRequest('POST', $url);
26 26
     }
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
     public static function whiteOrBlackList($params)
42 42
     {
43 43
         self::validateParams($params);
44
-        $url = static::classUrl().'/set_risk_action';
44
+        $url = static::classUrl() . '/set_risk_action';
45 45
 
46 46
         return static::staticRequest('POST', $url, $params);
47 47
     }
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
     public static function deactivateAuthorization($params)
60 60
     {
61 61
         self::validateParams($params);
62
-        $url = static::classUrl().'/deactivate_authorization';
62
+        $url = static::classUrl() . '/deactivate_authorization';
63 63
 
64 64
         return static::staticRequest('POST', $url, $params, 'arr');
65 65
     }
Please login to merge, or discard this patch.