woocommerce-paypal-payments/modules/ppcp-wc-payment-tokens/src/PaymentTokenApplePay.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();
}