phpbb\console\command\reparser\list_all::execute PHP Method

execute() protected method

Executes the command reparser:list
protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : integer
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
return integer
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $io = new SymfonyStyle($input, $output);
        $io->section($this->user->lang('CLI_DESCRIPTION_REPARSER_AVAILABLE'));
        $io->listing($this->reparser_names);
        return 0;
    }