mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-25 01:02:18 +08:00
14 lines
621 B
PHP
14 lines
621 B
PHP
<?php
|
|
|
|
/**
|
|
* The vaulting module services.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\WcPaymentTokens
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\WcPaymentTokens;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
|
|
return array('wc-payment-tokens.wc-payment-tokens' => static function (ContainerInterface $container): \WooCommerce\PayPalCommerce\WcPaymentTokens\WooCommercePaymentTokens {
|
|
return new \WooCommerce\PayPalCommerce\WcPaymentTokens\WooCommercePaymentTokens($container->get('api.endpoint.payment-tokens'), $container->get('woocommerce.logger.woocommerce'));
|
|
});
|