Subject: | Don't add newlines between conditions in statement modifiers |
If a statement modifier contains multiple conditions, but is shorter
than the maximum-line-length, don't split the conditions onto separate
lines.
This:
return "this is a descriptive error message"
if $res->is_error or not length $data;
shouldn't always be turned into this:
return "this is a descriptive error message"
if $res->is_error
or not length $data;