In service classes there is list() method description, like this one https://github.com/gocardless/gocardless-pro-php/blob/master/lib/Services/CreditorsService.php#L21
But it's wrong, as it always requires array parameter.
Instead of
@method ListResponse list(array $params)
it should be
@method ListResponse list(?array $params) or @method ListResponse list(array $params = []) (not sure how it's more correct)
In service classes there is list() method description, like this one https://github.com/gocardless/gocardless-pro-php/blob/master/lib/Services/CreditorsService.php#L21
But it's wrong, as it always requires array parameter.
Instead of
@method ListResponse list(array $params)it should be
@method ListResponse list(?array $params)or@method ListResponse list(array $params = [])(not sure how it's more correct)