dwolla-swagger-php icon indicating copy to clipboard operation
dwolla-swagger-php copied to clipboard

Autogenerated PHP SDK client for API V2

Results 13 dwolla-swagger-php issues
Sort by recently updated
recently updated
newest added

Hi There, In php 8.1, there is a PHP Deprecated notice regarding to the "Return type of methods" issue: `PHP Deprecated: Return type of Customer::offsetExists($offset) should either be compatible with...

hey folks! 1st of all, thank you for this wonderful well-documented API and SDK. Even a beginner like me could implement it on a Laravel project very easily. The uploadDocument()...

I added a `ModelInterface` to clean up the calls that used unknown variables in the `ApiClient::deserialize` call for Swagger based models. This removes "breaking" errors when running a php code-sniffer...

All models are name-spaced to `DwollaSwagger\models` meaning all the PHPDocs are incorrect that use `@return `. This updates the documentation to show the correct return type.

This is in response to Issue #32 which points out that there is invalid code within the code-base for PHP 5.3.3, which is the required minimum version. This could be...

In the `ApiClient::deserialize` the `new \DateTime($data);` can potentially throw an exception, but it’s not caught in code. It’s also not documented in the PHPDoc that it could throw an exception,...

I've been looking through the DwollaSwagger API and noticed that there are inconsistencies within the minimum version for PHP and code syntax that is used. Specifically a few issues I've...

The namespacing for models is i.e. DwollaSwagger\models\CreateFundingSourceRequest The class namespace expected by the FundingsourceApi->createCustomerFundingSource is 'DwollaSwagger\CreateFundingSourceRequest' It looks like maybe at some point all the models were moved into the...