123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Braintree\Test;
- /**
- * VenmoSdk payment method codes used for testing purposes
- *
- * @package Braintree
- * @subpackage Test
- */
- class VenmoSdk
- {
- public static $visaPaymentMethodCode = "stub-4111111111111111";
- public static function generateTestPaymentMethodCode($number) {
- return "stub-" . $number;
- }
- public static function getInvalidPaymentMethodCode() {
- return "stub-invalid-payment-method-code";
- }
- public static function getTestSession() {
- return "stub-session";
- }
- public static function getInvalidTestSession() {
- return "stub-invalid-session";
- }
- }
- class_alias('Braintree\Test\VenmoSdk', 'Braintree_Test_VenmoSdk');
|