PhpBench\Storage\Archiver\XmlArchiver::writeProgress PHP Метод

writeProgress() приватный Метод

private writeProgress ( Symfony\Component\Console\Output\OutputInterface $output, $index, $count, $char = '.' )
$output Symfony\Component\Console\Output\OutputInterface
    private function writeProgress(OutputInterface $output, $index, $count, $char = '.')
    {
        if ($index > 0 && $index % 64 === 0) {
            $output->writeln(sprintf(' (%s/%s)', $index, $count));
        }
        $output->write($char);
    }