Skip to content

Commit f23245c

Browse files
committed
Removendo campos fixos no pagamento via Cartão
1 parent 2a6530e commit f23245c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Resources/Payment/CreditCard.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* Essa classe é responsavel por realizar o pagamento
1010
* utilizando o cartão de credito, preparando e hidratando
1111
* o mesmo com os dados estaticos.
12-
*
12+
*
1313
* @package Zoop\Payment
1414
* @author italodeveloper <[email protected]>
1515
* @version 1.0.0
@@ -38,7 +38,7 @@ private function prepareCreditCard(array $card, $referenceId = null)
3838
'currency' => 'BRL',
3939
'description' => $card['description'],
4040
'on_behalf_of' => $this->configurations['auth']['on_behalf_of'],
41-
'statement_descriptor' => 'SEMINOVOS BH',
41+
'statement_descriptor' => $card['statement_descriptor'],
4242
'payment_type' => 'credit',
4343
'source' => array(
4444
'usage' => 'single_use',
@@ -68,7 +68,7 @@ private function prepareCreditCard(array $card, $referenceId = null)
6868
* validateInstallment function
6969
*
7070
* Valida o parcelamento por cartão de credito.
71-
*
71+
*
7272
* @param array $installment
7373
* @return bool
7474
*/

0 commit comments

Comments
 (0)