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

16 lines
274 B
PHP

<?php
/**
* The webhook module.
*
* @package Inpsyde\PayPalCommerce\Webhooks
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Webhooks;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new WebhookModule();
};