TransactionAmounts.php 460 B

123456789101112131415161718
  1. <?php
  2. namespace Braintree\Test;
  3. /**
  4. * Transaction amounts used for testing purposes
  5. *
  6. * The constants in this class can be used to create transactions with
  7. * the desired status in the sandbox environment.
  8. *
  9. * @package Braintree
  10. * @subpackage Test
  11. */
  12. class TransactionAmounts
  13. {
  14. public static $authorize = '1000.00';
  15. public static $decline = '2000.00';
  16. }
  17. class_alias('Braintree\Test\TransactionAmounts', 'Braintree_Test_TransactionAmounts');