for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Methods
*
* @author Pronamic <[email protected]>
* @copyright 2005-2018 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay\Gateways\OmniKassa2
*/
namespace Pronamic\WordPress\Pay\Gateways\OmniKassa2;
* @author Remco Tolsma
* @version 2.0.2
* @since 1.0.0
class Methods {
* Constant for the Bancontact method.
* @var string
const BANCONTACT = PaymentBrands::BANCONTACT;
* Constant for the CreditCard method.
* Dutch: De waarde CARDS zorgt ervoor dat de consument
* kan kiezen uit de betaalmethoden: MASTERCARD, VISA,
* BANCONTACT, MAESTRO en V_PAY.
const CREDIT_CARD = PaymentBrands::CARDS;
* Constant for the iDEAL payment method.
const IDEAL = PaymentBrands::IDEAL;
* Constant for the PayPal payment method.
const PAYPAL = PaymentBrands::PAYPAL;
}