php-styler restyles code using `else if`: ```php if ($foo) { $foo = 'bar'; } else if ($bar) { $foo = 'baz'; } ``` ...to this: ```php if ($foo) { $foo = 'bar'; } else { if ($bar) { $foo = 'baz'; } } ``` I think the styled code should use `elseif` instead.