phpfmt8
phpfmt8 copied to clipboard
Added semicolon
$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