mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-03 08:37:53 +08:00
16 lines
268 B
PHP
16 lines
268 B
PHP
<?php
|
|
/**
|
|
* The api client module.
|
|
*
|
|
* @package Inpsyde\PayPalCommerce\ApiClient
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Inpsyde\PayPalCommerce\ApiClient;
|
|
|
|
use Dhii\Modular\Module\ModuleInterface;
|
|
|
|
return function (): ModuleInterface {
|
|
return new ApiModule();
|
|
};
|