woocommerce-paypal-payments/modules/ppcp-session/module.php
2020-09-01 14:21:58 +03:00

16 lines
265 B
PHP

<?php
/**
* The session module.
*
* @package Inpsyde\PayPalCommerce\Session
*/
declare(strict_types=1);
namespace Inpsyde\PayPalCommerce\Session;
use Dhii\Modular\Module\ModuleInterface;
return function (): ModuleInterface {
return new SessionModule();
};