You are here

public function SymfonyStyle::progressFinish in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/console/Style/SymfonyStyle.php \Symfony\Component\Console\Style\SymfonyStyle::progressFinish()

Finishes the progress output.

Overrides StyleInterface::progressFinish

File

vendor/symfony/console/Style/SymfonyStyle.php, line 283

Class

SymfonyStyle
Output decorator helpers for the Symfony Style Guide.

Namespace

Symfony\Component\Console\Style

Code

public function progressFinish() {
  $this
    ->getProgressBar()
    ->finish();
  $this
    ->newLine(2);
  $this->progressBar = null;
}