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

17 lines
268 B
PHP
Raw Normal View History

2020-04-02 08:38:00 +03:00
<?php
2020-08-31 11:12:46 +03:00
/**
* The button module.
*
* @package Inpsyde\PayPalCommerce\Button
*/
2020-04-28 12:31:12 +03:00
2020-04-02 08:38:00 +03:00
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Button;
use Dhii\Modular\Module\ModuleInterface;
2020-04-28 12:31:12 +03:00
return static function (): ModuleInterface {
2020-08-31 11:12:46 +03:00
return new ButtonModule();
2020-04-06 11:16:18 +03:00
};