Proyectos de Subversion LeadersLinked - Backend

Rev

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

Rev 16768 Rev 16769
Línea 20... Línea 20...
20
 
20
 
Línea 21... Línea 21...
21
class KnowledgeAreaCategoryController extends AbstractActionController {
21
class KnowledgeAreaCategoryController extends AbstractActionController {
22
 
22
 
23
    /**
23
    /**
24
     *
24
     *
25
     * @var AdapterInterface
25
     * @var \Laminas\Db\Adapter\AdapterInterface
Línea 26... Línea 26...
26
     */
26
     */
27
    private $adapter;
27
    private $adapter;
-
 
28
    
-
 
29
    /**
-
 
30
     *
-
 
31
     * @var \LeadersLinked\Cache\CacheInterface
-
 
32
     */
-
 
33
    private $cache;
-
 
34
    
28
    
35
    
29
    /**
36
    /**
30
     *
37
     *
Línea 31... Línea 38...
31
     * @var  LoggerInterface
38
     * @var \Laminas\Log\LoggerInterface
32
     */
39
     */
33
    private $logger;
40
    private $logger;
34
    
41
    
35
    /**
42
    /**
Línea -... Línea 43...
-
 
43
     *
-
 
44
     * @var array
-
 
45
     */
-
 
46
    private $config;
-
 
47
    
-
 
48
    
-
 
49
    /**
-
 
50
     *
36
     *
51
     * @var \Laminas\Mvc\I18n\Translator
37
     * @var array
52
     */
38
     */
53
    private $translator;
-
 
54
    
39
    private $config;
55
    
40
    
56
    /**
-
 
57
     *
41
    /**
58
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
42
     *
59
     * @param \LeadersLinked\Cache\CacheInterface $cache
43
     * @param AdapterInterface $adapter
60
     * @param \Laminas\Log\LoggerInterface LoggerInterface $logger
44
     * @param LoggerInterface $logger
61
     * @param array $config
-
 
62
     * @param \Laminas\Mvc\I18n\Translator $translator
45
     * @param array $config
63
     */
46
     */
64
    public function __construct($adapter, $cache, $logger, $config, $translator)
-
 
65
    {
47
    public function __construct($adapter, $logger, $config)
66
        $this->adapter      = $adapter;
Línea 48... Línea 67...
48
    {
67
        $this->cache        = $cache;
49
        $this->adapter = $adapter;
68
        $this->logger       = $logger;
50
        $this->logger = $logger;
69
        $this->config       = $config;