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

17 lines
284 B
PHP
Raw Normal View History

2020-06-15 11:48:37 +03:00
<?php
/**
* The onboarding module.
*
* @package Inpsyde\PayPalCommerce\Onboarding
*/
2020-06-15 11:48:37 +03:00
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Onboarding;
use Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new OnboardingModule();
2020-06-15 11:48:37 +03:00
};