1 | <?php |
||
11 | class LogsCommand extends Command |
||
12 | { |
||
13 | /** |
||
14 | * @var Logs |
||
15 | */ |
||
16 | private $logs; |
||
17 | |||
18 | /** |
||
19 | * @param Logs $logs |
||
20 | */ |
||
21 | public function __construct(Logs $logs) |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | protected function configure() |
||
38 | |||
39 | /** |
||
40 | * {@inheritdoc} |
||
41 | */ |
||
42 | protected function execute(InputInterface $input, OutputInterface $output) |
||
48 | } |
||
49 |