Your IP : 216.73.216.43


Current Path : /var/www/www.indacotrentino.com/www/vendor/braintree/braintree_php/lib/Braintree/Test/
Upload File :
Current File : //var/www/www.indacotrentino.com/www/vendor/braintree/braintree_php/lib/Braintree/Test/VenmoSdk.php

<?php

namespace Braintree\Test;

/**
 * VenmoSdk payment method codes used for testing purposes
 */
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";
    }
}