mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
14 lines
231 B
PHP
14 lines
231 B
PHP
<?php
|
|
/**
|
|
* The button module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Button
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\Button;
|
|
|
|
return static function (): ButtonModule {
|
|
return new ButtonModule();
|
|
};
|