14 lines
404 B
PHP
14 lines
404 B
PHP
<?php
|
|
|
|
/**
|
|
* The Pay Later configurator module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\PayLaterConfigurator
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\PayLaterConfigurator;
|
|
|
|
return static function (): \WooCommerce\PayPalCommerce\PayLaterConfigurator\PayLaterConfiguratorModule {
|
|
return new \WooCommerce\PayPalCommerce\PayLaterConfigurator\PayLaterConfiguratorModule();
|
|
};
|