| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 21 | { |
||
| 22 | $table = new Table($output); |
||
| 23 | $table |
||
| 24 | ->setHeaders(['ISBN', 'Title', 'Author']) |
||
| 25 | ->setRows([ |
||
| 26 | ['99921-58-10-7', 'Divine Comedy', 'Dante Alighieri'], |
||
| 27 | ['9971-5-0210-0', 'A Tale of Two Cities', 'Charles Dickens'], |
||
| 28 | ['960-425-059-0', 'The Lord of the Rings', 'J. R. R. Tolkien'], |
||
| 29 | ['80-902734-1-6', 'And Then There Were None', 'Agatha Christie'], |
||
| 30 | ]); |
||
| 31 | $table->render(); |
||
| 32 | } |
||
| 33 | } |