| 1 | <?php |
||
| 8 | class ClashOfClansApi |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var WebClient to perform requests to the Clash Of Clans API |
||
| 12 | */ |
||
| 13 | protected $webClient; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var string apikey Every call to the Clash Of Clans API needs to contain an Api Key |
||
| 17 | */ |
||
| 18 | public function __construct($apiKey) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * |
||
| 25 | * @var string The player's tag (with the hasttag) |
||
| 26 | */ |
||
| 27 | public function getPlayerByTag($tag) |
||
| 33 | } |
||
| 34 | } |