| Conditions | 1 |
| Paths | 1 |
| Total Lines | 18 |
| Code Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 35 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 36 | { |
||
| 37 | $info = $this->getCacheTool()->stat_realpath_get(); |
||
| 38 | |||
| 39 | $table = $this->getHelper('table'); |
||
| 40 | $table |
||
| 41 | ->setHeaders(array( |
||
| 42 | 'Path entry', |
||
| 43 | 'key', |
||
| 44 | 'is_dir', |
||
| 45 | 'realpath', |
||
| 46 | 'expires', |
||
| 47 | )) |
||
| 48 | ->setRows($this->processFilelist($info)) |
||
| 49 | ; |
||
| 50 | |||
| 51 | $table->render($output); |
||
| 52 | } |
||
| 53 | |||
| 71 |