woocommerce-paypal-payments/modules/ppcp-api-client/module.php

16 lines
310 B
PHP

<?php
/**
* The api client module.
*
* @package WooCommerce\PayPalCommerce\ApiClient
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\ApiClient;
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
return function (): ModuleInterface {
return new ApiModule();
};