Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

fonctions_test.c

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Module.php 628 B
    <?php
    /**
     * Zend Framework (http://framework.zend.com/)
     *
     * @link      http://github.com/zendframework/ZendSkeletonApplication for the canonical source repository
     * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
     * @license   http://framework.zend.com/license/new-bsd New BSD License
     */
    
    namespace UnicaenSiham;
    
    
    use Zend\Mvc\MvcEvent;
    use Zend\Stdlib\Glob;
    use Zend\Config\Factory as ConfigFactory;
    
    class Module
    {
    
        public function onBootstrap(MvcEvent $e)
        {
        }
    
    
    
        public function getConfig()
        {
            return include __DIR__ . '/config/module.config.php';
        }
    }