Skip to content

PHP BGG API release v0.0.2

Latest
Compare
Choose a tag to compare
@cdburgess cdburgess released this 21 Jan 00:18
· 1 commit to master since this release

The __call() method has been updated so an array of items can be passed and it will automatically be converted to a comma-delimited set of data to pass to the API. This is intended to be used for those parameters that accept multiple values:

$thing = new Thing();
$thing->id([123,124,125])
     ->send();