We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ed5779 commit fcfba4eCopy full SHA for fcfba4e
src/Output.php
@@ -284,13 +284,13 @@ protected function writeMark($type)
284
if ($type === self::TYPE_OK) {
285
$this->writer->write('.');
286
287
- } elseif ($type === self::TYPE_SKIP) {
+ } else if ($type === self::TYPE_SKIP) {
288
$this->write('S', self::TYPE_SKIP);
289
290
- } elseif ($type === self::TYPE_ERROR) {
+ } else if ($type === self::TYPE_ERROR) {
291
$this->write('X', self::TYPE_ERROR);
292
293
- } elseif ($type === self::TYPE_FAIL) {
+ } else if ($type === self::TYPE_FAIL) {
294
$this->writer->write('-');
295
}
296
0 commit comments