1 | <?php |
||
20 | class LoggerStateChannelCommand extends ContainerAwareCommand |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * @var array |
||
25 | */ |
||
26 | private $channels; |
||
27 | |||
28 | /** |
||
29 | * @var LockRepository |
||
30 | */ |
||
31 | private $lockRepository; |
||
32 | |||
33 | /** |
||
34 | * @var NotifierInterface |
||
35 | */ |
||
36 | private $notifier; |
||
37 | |||
38 | /** |
||
39 | * @var integer |
||
40 | */ |
||
41 | private $timeLimit; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | private $channelName; |
||
47 | |||
48 | /** |
||
49 | * @var integer |
||
50 | */ |
||
51 | private $extraTime; |
||
52 | |||
53 | |||
54 | /** |
||
55 | * @param LockRepository $lockRepository |
||
56 | * @param array $channels |
||
57 | * @param null $name |
||
58 | */ |
||
59 | public function __construct( |
||
71 | |||
72 | /** |
||
73 | * {@inheritDoc} |
||
74 | */ |
||
75 | protected function configure() |
||
86 | |||
87 | /** |
||
88 | * {@inheritdoc} |
||
89 | */ |
||
90 | protected function execute(InputInterface $input, OutputInterface $output) |
||
120 | |||
121 | /** |
||
122 | * @param string $key |
||
123 | * @param Lock $lock |
||
124 | * @param array $channel |
||
125 | */ |
||
126 | private function loadChannelInfomation($key, Lock $lock, $channel) |
||
136 | |||
137 | } |
||
138 |