mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-05 03:51:05 +08:00
25 lines
545 B
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'));
|
|
}
|
|
}
|