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

AutoSemicolon adds a semicolon inside a match() #3

Closed driade closed 1 year ago

driade commented 1 year ago
$foo = function () {
    match ($x) {
        $a => function () {
        };
    };
};

instead of

$foo = function () {
    match ($x) {
        $a => function () {
        }
    };
};
driade commented 1 year ago

fixed https://github.com/driade/phpfmt8/issues/9