Pattern: Use of trailing multi-line ternary operator
Issue: -
Ternary operator has to be reformatted when the operator is not leading the line.
# wrong
$t = $someCondition ?
$thenThis :
$otherwiseThis;
# correct
$t = $someCondition
? $thenThis
: $otherwiseThis;