woocommerce-paypal-payments/modules/ppcp-axo/src/Helper/PropertiesDictionary.php

25 lines
545 B
PHP

<?php
/**
* Properties of the AXO module.
*
* @package WooCommerce\PayPalCommerce\Axo\Helper
*/
declare (strict_types=1);
namespace WooCommerce\PayPalCommerce\Axo\Helper;
/**
* Class PropertiesDictionary
*/
class PropertiesDictionary
{
/**
* Returns the list of possible cardholder name options.
*
* @return array
*/
public static function cardholder_name_options(): array
{
return array('yes' => __('Yes', 'woocommerce-paypal-payments'), 'no' => __('No', 'woocommerce-paypal-payments'));
}
}