Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 6749 Rev 6849
Línea 6... Línea 6...
6
 
6
 
7
use Symfony\Component\Console\Command\Command;
7
use Symfony\Component\Console\Command\Command;
8
use Symfony\Component\Console\Input\InputInterface;
8
use Symfony\Component\Console\Input\InputInterface;
9
use Symfony\Component\Console\Output\OutputInterface;
9
use Symfony\Component\Console\Output\OutputInterface;
10
use Laminas\Db\Adapter\AdapterInterface;
-
 
11
use LeadersLinked\Cache\CacheInterface;
10
use Laminas\Db\Adapter\AdapterInterface;
12
use Laminas\Log\LoggerInterface;
-
 
13
use GeoIp2\Database\Reader As GeoIp2Reader;
-
 
-
 
11
use Laminas\Log\LoggerInterface;
Línea 14... Línea 12...
14
use LeadersLinked\Library\Functions;
12
 
15
 
13
 
16
class CheckDefaultFollowerAndConnectionForDefaultNetworkCommand extends Command
14
class CheckDefaultFollowerAndConnectionForDefaultNetworkCommand extends Command
17
{
15
{
Línea 22... Línea 20...
22
    private $adapter;
20
    private $adapter;
Línea 23... Línea 21...
23
    
21
    
24
    
22
    
25
    /**
-
 
26
     *
-
 
27
     * @var CacheInterface
-
 
28
     */
-
 
29
    private $cache;
-
 
30
    
-
 
31
    /**
23
    /**
32
     *
24
     *
33
     * @var  LoggerInterface
25
     * @var  LoggerInterface
Línea 34... Línea 26...
34
     */
26
     */
Línea 42... Línea 34...
42
    
34
    
43
    
35
    
44
    /**
36
    /**
45
     *
-
 
-
 
37
     *
46
     * @param AdapterInterface $adapter
38
     * @param AdapterInterface $adapter
47
     * @param CacheInterface $cache
39
     
48
     * @param LoggerInterface $logger
40
     * @param LoggerInterface $logger
49
     * @param array $config
41
     * @param array $config
50
     */
42
     */
51
     public function __construct($adapter, $cache, $logger, $config)
43
     public function __construct($adapter, $logger, $config)
52
    {
-
 
53
        $this->adapter      = $adapter;
44
    {
54
        $this->cache        = $cache;
45
        $this->adapter      = $adapter;
Línea 55... Línea 46...
55
        $this->logger       = $logger;
46
        $this->logger       = $logger;
56
        $this->config       = $config;
47
        $this->config       = $config;