mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
12 lines
204 B
PHP
12 lines
204 B
PHP
|
<?php
|
||
|
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
namespace Inpsyde\PayPalCommerce\Onboarding;
|
||
|
|
||
|
use Dhii\Modular\Module\ModuleInterface;
|
||
|
|
||
|
return static function (): ModuleInterface {
|
||
|
return new OnboardingModule();
|
||
|
};
|