Skip to content

Commit

Permalink
Corrección valor de constante STATUS_CAPTURED
Browse files Browse the repository at this point in the history
Se modifica valor de constante STATUS_CAPTURED de 'PARTIALLY_NULLIFIED' a 'CAPTURED', de acuerdo a lo que se especifica en la documentación de Transbank.
  • Loading branch information
vicardenas authored May 9, 2024
1 parent 228445d commit f1b5f92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Utils/TransactionStatusEnum.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ class TransactionStatusEnum
const STATUS_NULLIFIED = 'NULLIFIED';
const STATUS_REVERSED = 'REVERSED';
const STATUS_PARTIALLY_NULLIFIED = 'PARTIALLY_NULLIFIED';
const STATUS_CAPTURED = 'PARTIALLY_NULLIFIED';
const STATUS_CAPTURED = 'CAPTURED';
const STATUS_FAILED = 'FAILED';
}

0 comments on commit f1b5f92

Please sign in to comment.