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

17 lines
310 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.
*
2020-09-11 14:11:10 +03:00
* @package WooCommerce\PayPalCommerce\ApiClient
2020-09-01 09:00:45 +03:00
*/
2020-08-31 13:38:54 +03:00
declare(strict_types=1);
2020-09-11 14:11:10 +03:00
namespace WooCommerce\PayPalCommerce\ApiClient;
2020-08-31 13:38:54 +03:00
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
2020-08-31 13:38:54 +03:00
return function (): ModuleInterface {
2020-09-01 09:00:45 +03:00
return new ApiModule();
2020-08-31 13:38:54 +03:00
};