mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-01 07:02:48 +08:00
14 lines
238 B
PHP
14 lines
238 B
PHP
<?php
|
|
/**
|
|
* The webhook module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Webhooks
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Webhooks;
|
|
|
|
return static function (): WebhookModule {
|
|
return new WebhookModule();
|
|
};
|