1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00

Use colon do distinguish Psalm progress bar from PHPUnit output

This commit is contained in:
Matthew Brown 2019-05-27 10:18:37 -04:00
parent fd3235d785
commit 26e7a814df

View File

@ -30,7 +30,7 @@ class DefaultProgress extends Progress
public function taskDone(bool $successful): void
{
if ($successful) {
$this->write('.');
$this->write(':');
} else {
$this->write('F');
}