Skip to content
Snippets Groups Projects
Select Git revision
  • 1008c40eb30cc06a0586d2081b2b4f86d1c52349
  • main default
  • ll-datagen-simplifie
  • detached4
  • detached3
  • detached2
  • modernisation-gestion-donnees
  • detached
  • 1.7.0
  • 1.6.1
  • 1.6.0
  • 1.5.2
  • 1.5.1
  • 1.5.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.6
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
28 results

Module.php

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