@@ -56,7 +56,7 @@ discard block |
||
| 56 | 56 | |
| 57 | 57 | $handler = HandlerStack::create($mock); |
| 58 | 58 | |
| 59 | - return new Client(['handler' => $handler, 'base_uri' => 'https://' . self::REGION . '.api.pvp.net']); |
|
| 59 | + return new Client(['handler' => $handler, 'base_uri' => 'https://'.self::REGION.'.api.pvp.net']); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | /** |
@@ -78,6 +78,6 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $handler = HandlerStack::create($mock); |
| 80 | 80 | |
| 81 | - return new Client(['handler' => $handler, 'base_uri' => 'https://' . self::REGION . '.api.pvp.net']); |
|
| 81 | + return new Client(['handler' => $handler, 'base_uri' => 'https://'.self::REGION.'.api.pvp.net']); |
|
| 82 | 82 | } |
| 83 | 83 | } |
@@ -251,7 +251,7 @@ |
||
| 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 | /** |
@@ -63,7 +63,7 @@ |
||
| 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 | /** |