Completed
Pull Request — master (#11)
by Tristan
02:05
created
src/LoLApi/ApiClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -290,10 +290,10 @@
 block discarded – undo
290 290
     public function getBaseUrl($endpointStandardization = false)
291 291
     {
292 292
         if ($endpointStandardization === true) {
293
-            return 'https://' . self::$regionsWithIds[$this->region] . '.api.riotgames.com';
293
+            return 'https://'.self::$regionsWithIds[$this->region].'.api.riotgames.com';
294 294
         }
295 295
 
296
-        return 'https://' . $this->region . '.api.pvp.net';
296
+        return 'https://'.$this->region.'.api.pvp.net';
297 297
     }
298 298
 
299 299
     /**
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
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
             $url = str_replace('{region}', $this->apiClient->getRegion(), $url);
72 72
         }
73 73
         
74
-        return $baseUrl . $url . '?' . http_build_query($queryParameters);
74
+        return $baseUrl.$url.'?'.http_build_query($queryParameters);
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this patch.