Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 15540 | Rev 16768 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 15540 Rev 16766
Línea 7... Línea 7...
7
namespace LeadersLinked\Factory\Controller;
7
namespace LeadersLinked\Factory\Controller;
Línea 8... Línea 8...
8
 
8
 
9
use Psr\Container\ContainerInterface;
9
use Psr\Container\ContainerInterface;
10
use Laminas\ServiceManager\Factory\FactoryInterface;
10
use Laminas\ServiceManager\Factory\FactoryInterface;
-
 
11
use LeadersLinked\Controller\EngagementController;
Línea 11... Línea 12...
11
use LeadersLinked\Controller\EngagementController;
12
use LeadersLinked\Cache\CacheImpl;
12
 
13
 
13
 
14
 
14
 
15
 
Línea 15... Línea 16...
15
class EngagementControllerFactory implements FactoryInterface
16
class EngagementControllerFactory implements FactoryInterface
16
{
-
 
-
 
17
{
17
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
18
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
18
    {
19
    {
Línea 19... Línea 20...
19
        
20
        
20
        $db         = $container->get('leaders-linked-db');
21
        $db         = $container->get('leaders-linked-db');
21
        $cache      = $container->get('leaders-linked-cache');
22
       
Línea -... Línea 23...
-
 
23
        $log        = $container->get('leaders-linked-log');
-
 
24
        $config     = $container->get('ServiceManager')->get('config');
Línea 22... Línea 25...
22
        $log        = $container->get('leaders-linked-log');
25
        
23
        $config     = $container->get('ServiceManager')->get('config');
26
        $config = array_filter($config, function($k) {
24
        
27
            return strpos($k, 'leaderslinked.') !== false;
25
        $config = array_filter($config, function($k) {
28
        }, ARRAY_FILTER_USE_KEY);