Completed
Branch v4.x (236e76)
by Dmitry
40:20 queued 32s
created
src/AbstractService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      */
61 61
     protected function getUri(): string
62 62
     {
63
-        return $this->getCredentials()->getBaseUrl() . '/json/v5/' . mb_strtolower($this->getServiceName());
63
+        return $this->getCredentials()->getBaseUrl().'/json/v5/'.mb_strtolower($this->getServiceName());
64 64
     }
65 65
 
66 66
     /**
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         $headers = [
72 72
             'Content-Type' => 'application/json; charset=utf-8',
73 73
             'Accept' => 'application/json',
74
-            'Authorization' => 'Bearer ' . $this->getCredentials()->getToken(),
74
+            'Authorization' => 'Bearer '.$this->getCredentials()->getToken(),
75 75
             'Accept-Language' => $this->getCredentials()->getLanguage()
76 76
         ];
77 77
 
Please login to merge, or discard this patch.