Skip to content
Snippets Groups Projects
Select Git revision
  • 3daeec8dc3dfe95e9ba64e03fce837cf9e2d92a7
  • master default protected
  • release/8.0-perimetres
  • php84
  • detached3
  • 6.x
  • 7.x
  • detached2
  • detached
  • php82
  • 5.x
  • cherry-pick-bf3b5271
  • v5.x-test
  • laminas_migration
  • 7.2.9
  • 7.2.8
  • 7.2.7
  • 7.2.6
  • 7.2.5
  • 7.2.4
  • 7.2.3
  • 7.2.2
  • 7.2.1
  • 7.2.0
  • 7.1.3
  • 7.1.2
  • 7.1.1
  • 7.1.0
  • 7.0.1
  • 7.0.0
  • 6.1.11
  • 6.1.10
  • 6.1.9
  • 6.1.8
34 results

MailViewHelper.php

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    LdapStructureServiceFactory.php 702 B
    <?php
    
    namespace UnicaenApp\Controller\Plugin;
    
    use Interop\Container\ContainerInterface;
    use Zend\ServiceManager\FactoryInterface;
    use Zend\ServiceManager\ServiceLocatorInterface;
    
    /**
     * Description of LdapStructureServiceFactory
     *
     * @author Bertrand GAUTHIER <bertrand.gauthier at unicaen.fr>
     */
    class LdapStructureServiceFactory implements FactoryInterface
    {
        public function createService(ServiceLocatorInterface $pluginManager)
        {
            return $this->__invoke($pluginManager, '?');
        }
    
        public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
        {
            return new LdapStructureService($container->get('ldap_structure_service'));
        }
    }