Releases: xivapi/xivapi-php
Releases · xivapi/xivapi-php
Change some search methods
This changes the following search methods:
column
tofindColumn
algorithm
tofindAlgorithm
This is because of 2 reasons:
column
was very close to another methodcolumns
, yet these are completely unrelated.- both
findColumn
andfindAlgorithm
affect thefind(x)
method.
Generalize query params
This change generalizes the query params so that they can be more dynamic and new ones can be used without code changes.
Eg:
$api->snakeCase()->limit(250)->content->Item()->list();
Is now:
$queries = [
'snake_case' => true,
'limit' => 250,
];
$api->queries($queries)->content->Item()->list();
Initial Release
Everything working, woo!