Sstalle\php7cc\CLIResultPrinter::printMetadata PHP Method

printMetadata() public method

public printMetadata ( Sstalle\php7cc\CompatibilityViolation\CheckMetadata $metadata )
$metadata Sstalle\php7cc\CompatibilityViolation\CheckMetadata
    public function printMetadata(CheckMetadata $metadata)
    {
        $checkedFileCount = $metadata->getCheckedFileCount();
        $elapsedTime = $metadata->getElapsedTime();
        $this->output->writeln(sprintf('Checked <fg=green>%d</fg=green> file%s in <fg=green>%.3f</fg=green> second%s', $checkedFileCount, $checkedFileCount > 1 ? 's' : '', $elapsedTime, $elapsedTime > 1 ? 's' : ''));
    }