From a5c54939792e87b1db67ff88ed657c6bef9db190 Mon Sep 17 00:00:00 2001 From: Jakub Onderka Date: Sat, 27 May 2017 12:22:07 +0200 Subject: [PATCH] Code style --- src/Output.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Output.php b/src/Output.php index 4fcdc150..298e2cf7 100644 --- a/src/Output.php +++ b/src/Output.php @@ -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('-'); }