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