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