Hal\MutaTesting\Event\Subscriber\Format\ConsoleSubscriber::progress PHP Метод

progress() публичный Метод

public progress ( $char )
    public function progress($char)
    {
        $this->cursor++;
        if ($this->cursor > 80) {
            $this->cursor = 0;
            $this->output->write(PHP_EOL);
        }
        $this->output->write($char);
    }