phpfmt8 icon indicating copy to clipboard operation
phpfmt8 copied to clipboard

Added semicolon

Open driade opened this issue 10 months ago • 0 comments

$j->first(fn($a) => $a === 1)
 ?? 1;

becomes

$j->first(fn($a) => $a === 1); ?? 1;

whereas

$j->first(fn($a) => $a === 1) ?? 1;

it's ok

driade avatar Feb 20 '25 16:02 driade