Skip to content
Snippets Groups Projects
Select Git revision
  • 97c428ea7c270561784124b2d86d1e6466de9412
  • master default protected
  • 1.0.1
  • 1.0.0
4 results

002_insert.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;
        }
    
    }