Select Git revision
DataGen.php
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;
}
}