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

Dockerfile

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