Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 6849 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 6849 Rev 6866
Línea 14... Línea 14...
14
class AuthControllerFactory implements FactoryInterface
14
class AuthControllerFactory implements FactoryInterface
15
{
15
{
16
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
16
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
17
    {
17
    {
18
        $db         = $container->get('leaders-linked-db');
18
        $db         = $container->get('leaders-linked-db');
-
 
19
        $cache      = $container->get('leaders-linked-cache');
19
        $log        = $container->get('leaders-linked-log');
20
        $log        = $container->get('leaders-linked-log');
20
        $config     = $container->get('ServiceManager')->get('config');
-
 
Línea -... Línea 21...
-
 
21
        
-
 
22
        $translator     = $container->get('ServiceManager')->get('MvcTranslator');
Línea 21... Línea 23...
21
        
23
        $config         = $container->get('ServiceManager')->get('config');
22
        
24
        
23
        
25
        
Línea 24... Línea 26...
24
        $config = array_filter($config, function($k) {
26
        $config = array_filter($config, function($k) {
25
            return strpos($k, 'leaderslinked.') !== false;
27
            return strpos($k, 'leaderslinked.') !== false;
26
        }, ARRAY_FILTER_USE_KEY);
28
        }, ARRAY_FILTER_USE_KEY);