vscode-phpfmt icon indicating copy to clipboard operation
vscode-phpfmt copied to clipboard

Enum comments indentation missing

Open ili101 opened this issue 5 months ago • 2 comments

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;
}

ili101 avatar Feb 06 '24 17:02 ili101

Thanks @ili101 I'll check it

driade avatar Feb 06 '24 20:02 driade

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

driade avatar Mar 08 '24 22:03 driade