mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-08-04 03:40:45 +08:00
29 lines
515 B
PHP
29 lines
515 B
PHP
<?php
|
|
|
|
/**
|
|
* WooCommerce Payment token for ApplePay.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\WcPaymentTokens
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\WcPaymentTokens;
|
|
|
|
use WC_Payment_Token;
|
|
/**
|
|
* Class PaymentTokenApplePay
|
|
*/
|
|
class PaymentTokenApplePay extends WC_Payment_Token
|
|
{
|
|
/**
|
|
* Token Type String.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $type = 'ApplePay';
|
|
/**
|
|
* Extra data.
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $extra_data = array();
|
|
}
|