Passed
Push — main ( ecd95e...dbd039 )
by Leandro
02:21
created
src/Itau/API/ItauCertificate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     {
39 39
         $headers = [
40 40
             'Content-Type: text/plain',
41
-            'Authorization: Bearer ' . $token
41
+            'Authorization: Bearer '.$token
42 42
         ];
43 43
 
44 44
         $curl = curl_init();
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         if ($response === false) {
62 62
             $error = curl_error($curl);
63 63
             curl_close($curl);
64
-            throw new ItauException('CURL Error: ' . $error, 100);
64
+            throw new ItauException('CURL Error: '.$error, 100);
65 65
         }
66 66
 
67 67
         $statusCode = (int) curl_getinfo($curl, CURLINFO_HTTP_CODE);
Please login to merge, or discard this patch.