plugin-php
plugin-php copied to clipboard
Ugly indent when method commented out
@prettier/plugin-php v0.16.1 Playground link
Input:
<?php
class A
{
// public function foo()
// {
// return 42;
// }
}
Output:
<?php
class A
{
// public function foo()
// {
// return 42;
// }
}