mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
14 lines
228 B
PHP
14 lines
228 B
PHP
<?php
|
|
/**
|
|
* The api client module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\ApiClient
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\ApiClient;
|
|
|
|
return function (): ApiModule {
|
|
return new ApiModule();
|
|
};
|