Albion\OnlineDataProject\Infrastructure\GameInfo\CGVGClient::class
getCGVGMatches()
- Realm
$realm
- одно из Realm. - int
$limit
- ограничить число результатов [default = 10], - int
$offset
- пропустить n результатов [default = 0],
$client = new CGVGClient();
$client->getCGVGMatches(Realm::AMERICA)
->then(
static function($matches) {
// Do something with battles information
}
)
getCGVGMatchById()
- FailedToPerformRequestException - если что-то пошло не так
$client = new CGVGClient();
$client->getCGVGMatchById(Realm::AMERICA, 'test1234')
->then(
static function($match) {
// Do something with battles information
}
)
->catch(
static function($exception) {
// Do something with exception
}
)
Нуждается в уточнении
getFeaturedGuildMatches()
- FailedToPerformRequestException - если что-то пошло не так
$client = new CGVGClient();
$client->getFeaturedGuildMatches(Realm::AMERICA)
->then(
static function($matches) {
// Do something with battles information
}
)
->catch(
static function($exception) {
// Do something with exception
}
)
Нуждается в уточнении
getUpcomingGuildMatches(int $limit = 10, int $offset = 0)
- Realm
$realm
- одно из Realm. - int
$limit
- ограничить число результатов [default = 10], - int
$offset
- пропустить n результатов [default = 0],
- FailedToPerformRequestException - если что-то пошло не так
use Albion\OnlineDataProject\Infrastructure\GameInfo\CGVGClient;
$client = new CGVGClient();
$client->getUpcomingGuildMatches(Realm::AMERICA)
->then(
static function($matches) {
// Do something with battles information
}
)
->catch(
static function($exception) {
// Do something with exception
}
)
Нуждается в уточнении
getPastGuildMatches()
- Realm
$realm
- одно из Realm. - int
$limit
- ограничить число результатов [default = 10], - int
$offset
- пропустить n результатов [default = 0], - string
$guildId
- выбрать только для данной гильдии [default = null]
- FailedToPerformRequestException - если что-то пошло не так
$client = new CGVGClient();
$client->getPastGuildMatches(Realm::AMERICA)
->then(
static function($matches) {
// Do something with battles information
}
)
->catch(
static function($exception) {
// Do something with exception
}
)
getGuildMatchById()
- FailedToPerformRequestException - если что-то пошло не так
use Albion\OnlineDataProject\Infrastructure\GameInfo\CGVGClient;
$client = new CGVGClient();
$client->getGuildMatchById(Realm::AMERICA, 'test1234')
->then(
static function($matches) {
// Do something with battles information
}
)
->catch(
static function($exception) {
// Do something with exception
}
)