driade / phpfmt8

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

Extra semicolon after match each time we save when inside a function #61

Closed driade closed 10 months ago

driade commented 11 months ago
$this->ticket->messages
    ->each(function () {
        match (true) {
        };
    });

becomes

$this->ticket->messages
    ->each(function () {
        match (true) {
        };;
    });