Skip to content

Commit fce9ec0

Browse files
committed
Fixed CodeStyle (line too long)
1 parent f92f05f commit fce9ec0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/Manager.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ protected function getDefaultOutput(Settings $settings)
107107
if ($settings->json) {
108108
return new JsonOutput($writer);
109109
} else {
110-
return ($settings->colors !== Settings::DISABLED ? new TextOutputColored($writer, $settings->colors) : new TextOutput($writer));
110+
if ($settings->colors === Settings::DISABLED) {
111+
return new TextOutput($writer);
112+
}
113+
return new TextOutputColored($writer, $settings->colors);
111114
}
112115
}
113116

0 commit comments

Comments
 (0)