woocommerce-paypal-payments/modules/ppcp-api-client/module.php
2020-09-01 14:21:58 +03:00

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();
};