Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • release_4.0.0
  • laminas_migration
  • 4.0.0
  • 3.0.3
  • 3.0.2
  • 3.0.1
  • 3.0.0
  • 1.2.15
  • 1.2.14
  • 1.2.13
  • 1.2.12
  • 1.2.11
  • 1.2.10
  • 1.2.9
  • 1.2.8
  • 1.2.7
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
23 results

package.sql

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    IndexControllerFactory.php 359 B
    <?php
    
    namespace UnicaenRenderer\Controller;
    
    use Interop\Container\ContainerInterface;
    
    class IndexControllerFactory {
    
        /**
         * @param ContainerInterface $container
         * @return IndexController
         */
        public function __invoke(ContainerInterface $container)
        {
            $controller = new IndexController();
            return $controller;
        }
    
    }