Skip to content

Commit

Permalink
Updating to v1.2.0
Browse files Browse the repository at this point in the history
Adding function "playerClans"
Adding function "infoClansById"
  • Loading branch information
hichxm committed Feb 20, 2018
1 parent ac08b84 commit 7c974a2
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ object-oriented code for your IDE (*integrated development environment*).
"region" => "eu"
]);
```
2) Player(s) info
2) Search player(s) by id
```php
$WarGaming->searchPlayer($players_id = ["500080014", "514444123", "514444121"], $options = [
$WarGaming->infoPlayersById($players_id = ["500080014", "514444123", "514444121"], $options = [
"region" => "eu"
]);
```
Expand All @@ -48,6 +48,16 @@ object-oriented code for your IDE (*integrated development environment*).
"region" => "eu"
]);
```
5) Search clans by id
```php
$WarGaming->infoClansById($clans_id = ["500041879", "500034196"], $options = [
"region" => "eu"
]);
```
5) Search clans of player(s) id
```php
$WarGaming->playerClans($players_id = ["500450795", "503197062", "500435236"]);
```

## License

Expand Down

0 comments on commit 7c974a2

Please sign in to comment.