Skip to content

Commit fcfba4e

Browse files
committed
Code style
1 parent 0ed5779 commit fcfba4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Output.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -284,13 +284,13 @@ protected function writeMark($type)
284284
if ($type === self::TYPE_OK) {
285285
$this->writer->write('.');
286286

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

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

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

0 commit comments

Comments
 (0)