control_structure_continuation_position
Control structure continuation keyword must be on the configured line.
position
the position of the keyword that continues the control structure.
Allowed values: 'next_line', 'same_line'
'next_line'
'same_line'
Default value: 'same_line'
Default configuration.
--- Original +++ New <?php if ($baz == true) { echo "foo"; -} -else { +} else { echo "bar"; }
With configuration: ['position' => 'next_line'].
['position' => 'next_line']
--- Original +++ New <?php if ($baz == true) { echo "foo"; -} else { +} +else { echo "bar"; }