move module.local to module

This commit is contained in:
David Remer 2020-09-01 14:21:58 +03:00
parent c443e4053c
commit f8e82bdfaf
217 changed files with 8 additions and 2 deletions

View file

@ -0,0 +1,16 @@
<?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();
};