woocommerce-paypal-payments/modules/ppcp-webhooks/module.php

17 lines
274 B
PHP
Raw Normal View History

2020-07-06 11:04:06 +03:00
<?php
2020-08-27 13:10:16 +03:00
/**
* The webhook module.
*
* @package Inpsyde\PayPalCommerce\Webhooks
*/
2020-07-06 11:04:06 +03:00
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Webhooks;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
2020-08-27 13:10:16 +03:00
return new WebhookModule();
2020-07-06 11:04:06 +03:00
};