@prettier/plugin-php v0.19.2
Playground link
Input:
<?php
#[ATTRIBUTE]
function aaa(
int $bbb,
// this comment causes attribute to dissappear
int $ccc,
) {
var_dump('test');
}
Output:
<?php
function aaa(
int $bbb,
// this comment causes attribute to dissappear
int $ccc,
) {
var_dump("test");
}