@@ -290,10 +290,10 @@ |
||
| 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 | /** |
@@ -67,7 +67,7 @@ |
||
| 67 | 67 | { |
| 68 | 68 | $baseUrl = $global ? $this->apiClient->getGlobalUrl() : $this->apiClient->getBaseUrl($endpointStandardization); |
| 69 | 69 | |
| 70 | - return $baseUrl . $url . '?' . http_build_query($queryParameters); |
|
| 70 | + return $baseUrl.$url.'?'.http_build_query($queryParameters); |
|
| 71 | 71 | } |
| 72 | 72 | |
| 73 | 73 | /** |