123456789101112131415161718192021 |
- <?php
- namespace Braintree\Test;
- /**
- * Merchant Account constants used for testing purposes
- *
- * @package Braintree
- * @subpackage Test
- */
- class MerchantAccount
- {
- public static $approve = "approve_me";
- public static $insufficientFundsContactUs = "insufficient_funds__contact";
- public static $accountNotAuthorizedContactUs = "account_not_authorized__contact";
- public static $bankRejectedUpdateFundingInformation = "bank_rejected__update";
- public static $bankRejectedNone = "bank_rejected__none";
- }
- class_alias('Braintree\Test\MerchantAccount', 'Braintree_Test_MerchantAccount');
|