| Conditions | 2 |
| Paths | 2 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php namespace StarCraftApiClient\Requests; |
||
| 18 | public function __construct($client, $type, $region) |
||
| 19 | { |
||
| 20 | $url = 'https://%s.api.battle.net/sc2/data/%s?locale=%s&apikey=%s'; |
||
| 21 | |||
| 22 | if (in_array($type, ['achievements', 'rewards'])) { |
||
| 23 | $this->url = |
||
| 24 | sprintf($url, $region, $type, $client->language(), $client->apiToken()); |
||
| 25 | } |
||
| 26 | } |
||
| 27 | } |
||
| 28 |