Current Path : /var/test/www/storage/vendor/braintree/braintree_php/lib/Braintree/Test/ |
Current File : /var/test/www/storage/vendor/braintree/braintree_php/lib/Braintree/Test/VenmoSdk.php |
<?php /** * VenmoSdk payment method codes used for testing purposes * * @package Braintree * @subpackage Test * @copyright 2014 Braintree, a division of PayPal, Inc. */ class Braintree_Test_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"; } }