Skip to content
Snippets Groups Projects
Select Git revision
  • bootstrap4_migration
  • develop default
  • master protected
  • unicaen_authentification
  • 5.x
  • 4.x
  • release_4.0.0
  • laminas_migration
  • zf-3.x
  • 7.1.0
  • 7.0.0
  • 6.1.0
  • 6.0.1
  • 6.0.0
  • 5.0.1
  • 5.0.0
  • 4.0.2
  • 4.0.1
  • 4.0.0
  • 3.0.0
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
26 results

composer.phar

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Module.php 409 B
    <?php
    
    namespace UnicaenVue;
    
    use Laminas\ModuleManager\Feature\ConfigProviderInterface;
    use Laminas\Mvc\MvcEvent;
    
    /**
     *
     *
     * @author Laurent LECLUSE <laurent.lecluse at unicaen.fr>
     */
    class Module implements ConfigProviderInterface
    {
        public function onBootstrap(MvcEvent $e)
        {
    
        }
    
    
    
        public function getConfig()
        {
            return include __DIR__ . '/config/module.config.php';
        }
    
    }