mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
16 lines
315 B
PHP
16 lines
315 B
PHP
<?php
|
|
/**
|
|
* The vaulting module services.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Vaulting
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Vaulting;
|
|
|
|
return array(
|
|
'vaulting.payment-tokens-renderer' => static function (): PaymentTokensRendered {
|
|
return new PaymentTokensRendered();
|
|
},
|
|
);
|