MerchantAccount.php 607 B

123456789101112131415161718192021
  1. <?php
  2. namespace Braintree\Test;
  3. /**
  4. * Merchant Account constants used for testing purposes
  5. *
  6. * @package Braintree
  7. * @subpackage Test
  8. */
  9. class MerchantAccount
  10. {
  11. public static $approve = "approve_me";
  12. public static $insufficientFundsContactUs = "insufficient_funds__contact";
  13. public static $accountNotAuthorizedContactUs = "account_not_authorized__contact";
  14. public static $bankRejectedUpdateFundingInformation = "bank_rejected__update";
  15. public static $bankRejectedNone = "bank_rejected__none";
  16. }
  17. class_alias('Braintree\Test\MerchantAccount', 'Braintree_Test_MerchantAccount');