Skip to content

Commit

Permalink
added pix provider tid to GetPixTransacitonResponse (#44)
Browse files Browse the repository at this point in the history
Co-authored-by: Unknown <[email protected]>
  • Loading branch information
GusBedasi and samuelleitemundipagg authored Jun 1, 2023
1 parent 64f0bf8 commit 0af9d04
Show file tree
Hide file tree
Showing 13 changed files with 2,741 additions and 2,730 deletions.
2,252 changes: 1,126 additions & 1,126 deletions README.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions src/Controllers/BaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class BaseController
* User-agent to be sent with API calls
* @var string
*/
const USER_AGENT = 'PagarmeCoreApi - PHP 5.7.3';
const USER_AGENT = 'PagarmeCoreApi - PHP 5.7.4';

/**
* HttpCallBack instance associated with this controller
Expand Down Expand Up @@ -58,15 +58,15 @@ protected function getJsonMapper()
{
$mapper = new JsonMapper();
$mapper->arChildClasses['PagarmeCoreApiLib\\Models\\GetTransactionResponse'] = array(
'PagarmeCoreApiLib\\Models\\GetSafetyPayTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetBankTransferTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetSafetyPayTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetVoucherTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetBoletoTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetDebitCardTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetPrivateLabelTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetCashTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetBoletoTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetPixTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetCreditCardTransactionResponse'
'PagarmeCoreApiLib\\Models\\GetCreditCardTransactionResponse',
'PagarmeCoreApiLib\\Models\\GetPixTransactionResponse'
);
return $mapper;
}
Expand Down
396 changes: 198 additions & 198 deletions src/Controllers/ChargesController.php

Large diffs are not rendered by default.

Loading

0 comments on commit 0af9d04

Please sign in to comment.