Completed
Pull Request — master (#1)
by
unknown
05:56
created
src/Nimbles/CMTelecom/Client/IDINClient.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,11 +69,11 @@  discard block
 block discarded – undo
69 69
             throw new IssuerConnectionException($responseData);
70 70
         }
71 71
 
72
-        if (! isset($responseData[0]['issuers'])) {
72
+        if ( ! isset($responseData[0]['issuers'])) {
73 73
             throw new IssuerConnectionException('Unable to parse issuers');
74 74
         }
75 75
 
76
-        return array_map(function ($issuerData) {
76
+        return array_map(function($issuerData) {
77 77
             return new Issuer($issuerData['issuer_id'], $issuerData['issuer_name']);
78 78
         }, $responseData[0]['issuers']);
79 79
     }
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
             'telephone_number' => false,
104 104
         ];
105 105
 
106
-        if (!empty($scopes)) {
106
+        if ( ! empty($scopes)) {
107 107
             $options = array_merge(
108 108
                 array_fill_keys(array_keys($options), false),
109 109
                 array_fill_keys($scopes, true)
Please login to merge, or discard this patch.