Ojs\AnalyticsBundle\Command\StatsNormalizeCommand::execute PHP Method

execute() protected method

protected execute ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output ) : void
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
return void
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $this->io->title($this->getDescription());
        $this->io->text('Issue Total View Normalize Started');
        $this->normalizeIssueTotalArticleView();
        $this->io->text('Issue Total Download Normalize Started');
        $this->normalizeIssueTotalArticleDownload();
        $this->io->newLine();
        $this->io->text('Journal Normalize Started');
        $this->normalizeJournalTotalArticleView();
        $this->io->text('Journal Total View Normalize Finished');
        $this->normalizeJournalTotalArticleDownload();
        $this->io->text('Journal Total Download Normalize Finished');
        $this->io->newLine(2);
        $this->io->success('All process finished');
    }