Completed
Pull Request — master (#11)
by Tristan
19:07
created
src/LoLApi/ApiClient.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -251,7 +251,7 @@
 block discarded – undo
251 251
      */
252 252
     public function getBaseUrl()
253 253
     {
254
-        return 'https://' . self::$regionsWithIds[$this->region] . '.api.riotgames.com';
254
+        return 'https://'.self::$regionsWithIds[$this->region].'.api.riotgames.com';
255 255
     }
256 256
 
257 257
     /**
Please login to merge, or discard this patch.
src/LoLApi/Api/BaseApi.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
     {
64 64
         $baseUrl = $this->apiClient->getBaseUrl();
65 65
 
66
-        return $baseUrl . $url . '?' . http_build_query($queryParameters);
66
+        return $baseUrl.$url.'?'.http_build_query($queryParameters);
67 67
     }
68 68
 
69 69
     /**
Please login to merge, or discard this patch.