Your IP : 216.73.216.95


Current Path : /var/www/alh/system/storage/vendor/braintree/braintree_php/lib/Braintree/Test/
Upload File :
Current File : /var/www/alh/system/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";
    }
}