sdk_php icon indicating copy to clipboard operation
sdk_php copied to clipboard

PHP SDK for bunq API

Results 30 sdk_php issues
Sort by recently updated
recently updated
newest added

This fix will make sure the implicit cast of microtime is not done anymore, because it has been done in a new variable, which also means that the "cast" is...

## Steps to reproduce: ```php public function getPaymentsFromMonetaryAccount(int $monetaryAccountId, int $count = 50): array $pagination = new Pagination(); $pagination->setCount($count); return Payment::listing( $monetaryAccountId, [], $pagination->getUrlParamsCountOnly() )->getValue(); } ``` ## What should...

ResponseInterface hasHeader() is case-insensitive and checking for UPPER_CASED twice does not help. [//]: # (Thanks for opening this pull request! Before you proceed please make sure that you have an...

## Steps to reproduce: 1. Run: ```php $environmentType = BunqEnumApiEnvironmentType::PRODUCTION(); $apiKey = 'xxx'; $deviceDescription = 'yyy'; $permittedIps = ['185.54.92.3', '2a00:8642:1000:1::3']; $apiContext = ApiContext::create( $environmentType, $apiKey, $deviceDescription, $permittedIps ); ``` ##...

## Steps to reproduce: 1. Use PHP 8.1 and catch all errors including deprecations 2. Create a new ApiContext: `$apiContext = ApiContext::create($environmentType, $apiKey, $appName); ` ## What should happen: 1....

## Steps to reproduce: 1. "Creating a PSD2 context" ## What should happen: 1. Create PSD2 Provider ## What happens: 1. Running into `Error message: Certificate root is not trusted....

## Steps to reproduce: 1. Upgrade to Laravel 8 ## What should happen: 1. Upgrade should work when bunq updates to ```"guzzlehttp/guzzle" : ^7.0``` ## What happens: 1. Upgrade not...

[//]: # (Thanks for opening this pull request! Before you proceed please make sure that you have an issue that explains what this pull request will do. Make sure that...

It appears there's an API specification and server response inconsistency. The API specification clearly states that [`NotificationFilterUrlMonetaryAccount::create`](https://doc.bunq.com/#/notification-filter-url/Create_NotificationFilterUrl_for_User_MonetaryAccount) should respond with an `Id` object. Instead, the server responds with a list...

## Steps to reproduce: 1. request a debit card with type "MAESTRO", using api "{{host}}/v1/user/{{user_id}}/card-debit" ## What should happen: 1. in response, the value of "order_status" should be "DELIVERED_TO_CUSTOMER" and...