CacheTool\Command\StatRealpathGetCommand::execute PHP Method

execute() protected method

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $info = $this->getCacheTool()->stat_realpath_get();
        $table = new Table($output);
        $table->setHeaders(array('Path entry', 'key', 'is_dir', 'realpath', 'expires'))->setRows($this->processFilelist($info));
        $table->render($output);
    }