Add paylater-block module

This commit is contained in:
Alex P 2023-12-05 21:32:32 +02:00
parent 45516d0075
commit 0d016b94ec
No known key found for this signature in database
GPG key ID: 54487A734A204D71
12 changed files with 2395 additions and 0 deletions

View file

@ -0,0 +1,16 @@
<?php
/**
* The Pay Later block module.
*
* @package WooCommerce\PayPalCommerce\PayLaterBlock
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\PayLaterBlock;
use WooCommerce\PayPalCommerce\Vendor\Dhii\Modular\Module\ModuleInterface;
return static function (): ModuleInterface {
return new PayLaterBlockModule();
};