mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
17 lines
305 B
PHP
17 lines
305 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The order tracking module.
|
||
|
*
|
||
|
* @package WooCommerce\PayPalCommerce\OrderTracking
|
||
|
*/
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace WooCommerce\PayPalCommerce\OrderTracking;
|
||
|
|
||
|
use Dhii\Modular\Module\ModuleInterface;
|
||
|
|
||
|
return static function (): ModuleInterface {
|
||
|
return new OrderTrackingModule();
|
||
|
};
|