Skip to content
This repository has been archived by the owner on Jul 1, 2023. It is now read-only.

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubOnderka committed May 27, 2017
1 parent 0e95215 commit a5c5493
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -284,13 +284,13 @@ protected function writeMark($type)
if ($type === self::TYPE_OK) {
$this->writer->write('.');

} elseif ($type === self::TYPE_SKIP) {
} else if ($type === self::TYPE_SKIP) {
$this->write('S', self::TYPE_SKIP);

} elseif ($type === self::TYPE_ERROR) {
} else if ($type === self::TYPE_ERROR) {
$this->write('X', self::TYPE_ERROR);

} elseif ($type === self::TYPE_FAIL) {
} else if ($type === self::TYPE_FAIL) {
$this->writer->write('-');
}

Expand Down

0 comments on commit a5c5493

Please sign in to comment.