Commit a07f8edb authored by Laurent Lecluse's avatar Laurent Lecluse
Browse files

Fichier manquant

parent af03c8f8
Loading
Loading
Loading
Loading
Loading

src/Module.php

0 → 100644
+18 −0
Original line number Diff line number Diff line
<?php

namespace UnicaenTbl;

use Laminas\ModuleManager\Feature\ConfigProviderInterface;

/**
 *
 *
 * @author Laurent LECLUSE <laurent.lecluse at unicaen.fr>
 */
class Module implements ConfigProviderInterface
{
    public function getConfig()
    {
        return include dirname(__DIR__) . '/config/module.config.php';
    }
}