Skip to content
Snippets Groups Projects
Select Git revision
  • e46978e666a352fa1b578464bf3ca44bafba87ef
  • main default
  • detached3
  • detached2
  • modernisation-gestion-donnees
  • detached
  • 1.5.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.6
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 0.9.10
  • 0.9.9
  • 0.9.8
26 results

TableManager.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    RenduControllerFactory.php 504 B
    <?php
    
    namespace UnicaenRenderer\Controller;
    
    use Interop\Container\ContainerInterface;
    use UnicaenRenderer\Service\Rendu\RenduService;
    
    class RenduControllerFactory {
    
        public function __invoke(ContainerInterface $container)
        {
            /**
             * @var RenduService $contenuService
             */
            $contenuService = $container->get(RenduService::class);
    
            $controller = new RenduController();
            $controller->setRenduService($contenuService);
            return $controller;
        }
    }