Skip to content
Snippets Groups Projects
Select Git revision
  • 3bb121bdb226052613cbe449151f7e7b46b3ca12
  • master default protected
  • detached3
  • detached4
  • detached2
  • detached
  • V2
  • v1
  • laminas_migration
  • 6.2.0
  • 6.1.6
  • 6.1.5
  • 6.1.4
  • 6.1.3
  • 6.1.2
  • 6.1.1
  • 6.1.0
  • 6.0.3
  • 2.6
  • 6.0.2
  • 2.5
  • 2.4
  • 6.0.1
  • 6.0.0
  • 2.3
  • 2.2
  • 1.5.3
  • 2.1
  • 1.5.2
29 results

Module.php

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';
        }
    }