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 9... Línea 9...
9
use Symfony\Component\Console\Output\OutputInterface;
9
use Symfony\Component\Console\Output\OutputInterface;
10
use Laminas\Db\Adapter\AdapterInterface;
10
use Laminas\Db\Adapter\AdapterInterface;
Línea 11... Línea 11...
11
 
11
 
12
use Laminas\Log\LoggerInterface;
12
use Laminas\Log\LoggerInterface;
-
 
13
use LeadersLinked\Mapper\FeedMapper;
-
 
14
use Laminas\Mvc\I18n\Translator;
Línea 13... Línea 15...
13
use LeadersLinked\Mapper\FeedMapper;
15
use LeadersLinked\Cache\CacheInterface;
14
 
16
 
15
class CheckPreviewPosterForFeedCommand extends Command
17
class CheckPreviewPosterForFeedCommand extends Command
16
{
18
{
17
    /**
19
    /**
18
     *
20
     *
19
     * @var AdapterInterface
21
     * @var \Laminas\Db\Adapter\AdapterInterface
20
     */
-
 
Línea 21... Línea 22...
21
    private $adapter;
22
     */
22
 
23
    private $adapter;
-
 
24
    
-
 
25
    /**
-
 
26
     *
-
 
27
     * @var \LeadersLinked\Cache\CacheInterface
-
 
28
     */
-
 
29
    private $cache;
-
 
30
    
23
    
31
    
24
    /**
32
    /**
25
     *
33
     *
26
     * @var  LoggerInterface
34
     * @var \Laminas\Log\LoggerInterface
27
     */
35
     */
28
    private $logger;
36
    private $logger;
29
 
37
    
30
    /**
38
    /**
31
     *
39
     *
Línea 32... Línea 40...
32
     * @var array
40
     * @var array
33
     */
41
     */
-
 
42
    private $config;
-
 
43
    
-
 
44
    
-
 
45
    /**
-
 
46
     *
-
 
47
     * @var \Laminas\Mvc\I18n\Translator
-
 
48
     */
34
    private $config;
49
    private $translator;
-
 
50
    
35
    
51
    
36
    
52
    /**
-
 
53
     *
37
    /**
54
     * @param \Laminas\Db\Adapter\AdapterInterface $adapter
38
     *
55
     * @param \LeadersLinked\Cache\CacheInterface $cache
39
     * @param AdapterInterface $adapter
56
     * @param \Laminas\Log\LoggerInterface
40
     * @param LoggerInterface $logger
57
     * @param array $config
-
 
58
     * @param \Laminas\Mvc\I18n\Translator $translator
41
     * @param array $config
59
     */
42
     */
60
    public function __construct($adapter, $cache, $logger, $config, $translator)
-
 
61
    {
Línea 43... Línea 62...
43
     public function __construct($adapter, $logger, $config)
62
        $this->adapter      = $adapter;
44
    {
63
        $this->cache        = $cache;
45
        $this->adapter      = $adapter;
-
 
Línea 46... Línea 64...
46
        $this->logger       = $logger;
64
        $this->logger       = $logger;
47
        $this->config       = $config;
65
        $this->config       = $config;
48
        
66
        $this->translator   = $translator;