kokororin / vscode-phpfmt

Integrates phpfmt into VS Code
https://marketplace.visualstudio.com/items?itemName=kokororin.vscode-phpfmt
BSD 3-Clause "New" or "Revised" License
129 stars 30 forks source link

Enum comments indentation missing #137

Closed ili101 closed 2 months ago

ili101 commented 5 months ago

Expected:

<?php
enum ExampleEnum {
    /**
     * Note.
     */
    case Foo;
    # Note.
    case Bar;
    // Note.
    case Qux;
}

Actual:

<?php
enum ExampleEnum {
/**
     * Note.
     */
    case Foo;
# Note.
    case Bar;
// Note.
    case Qux;
}
driade commented 5 months ago

Thanks @ili101 I'll check it

driade commented 4 months ago

@ili101 It'd be fixed now. May you confirm? Thanks.