Conditions | 3 |
Paths | 1 |
Total Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
54 | protected function execute(InputInterface $input, OutputInterface $output) |
||
55 | { |
||
56 | $version = new Version; |
||
57 | $version->setRequest($this->request); |
||
58 | $version = $version->getInfo(); |
||
59 | $this->out('Magento Information', [[ |
||
60 | 'type' => 'table', |
||
61 | 'data' => [ |
||
62 | ['Parameter', 'Value'], |
||
63 | [ |
||
64 | ['Edition', $version[0] ?: 'Unknown'], |
||
65 | ['Version', $version[1] ?: 'Unknown'], |
||
66 | ] |
||
67 | ] |
||
68 | ]]); |
||
69 | } |
||
70 | } |
||
71 |