Ojs\CoreBundle\Command\NormalizeLastIssuesCommand::execute PHP Метод

execute() защищенный Метод

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : integer | null | void
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
Результат integer | null | void
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->io->title($this->getDescription());
        $allJournals = $this->getAllJournals();
        $this->io->progressStart(count($allJournals));
        foreach ($allJournals as $journal) {
            $this->normalizeLastIssuesByJournal($journal);
        }
    }