Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15391 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 www 1
<?php
2
 
3
declare(strict_types=1);
4
 
5
namespace LeadersLinked\Factory\Plugin;
6
 
15391 efrain 7
use Psr\Container\ContainerInterface;
1 www 8
use Laminas\ServiceManager\Factory\FactoryInterface;
9
use LeadersLinked\Plugin\CurrentUserPlugin;
10
 
11
class CurrentUserPluginFactory implements FactoryInterface
12
{
13
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
14
    {
15
        $adapter    = $container->get('leaders-linked-db');
16
 
17
        return new CurrentUserPlugin($adapter);
18
    }
16768 efrain 19
 
15391 efrain 20
}