driade / phpfmt8

PHP formatter for Sublime Text 4, with PHP 8 support.
BSD 3-Clause "New" or "Revised" License
47 stars 2 forks source link

Bad indentation with attributes and missing visibility #22

Closed driade closed 1 year ago

driade commented 1 year ago
class foo
{
    #[JsonSerialize('call it Jackson')]
public string $myValue;

function a()
    {
}
}

instead of

class foo
{
    #[JsonSerialize('call it Jackson')]
    public string $myValue;

    public function a()
    {
    }
}