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

17 lines
268 B
PHP
Raw Normal View History

2020-08-31 13:38:54 +03:00
<?php
2020-09-01 09:00:45 +03:00
/**
* The api client module.
*
* @package Inpsyde\PayPalCommerce\ApiClient
*/
2020-08-31 13:38:54 +03:00
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\ApiClient;
use Dhii\Modular\Module\ModuleInterface;
return function (): ModuleInterface {
2020-09-01 09:00:45 +03:00
return new ApiModule();
2020-08-31 13:38:54 +03:00
};