I am using PHPStorm and the inspection is recommending that I switch this line of code:
$orderings['custom'][$child->id] = isset($custom_values[$child->id]) ? $custom_values[$child->id] : $next_order++;
to this:
$orderings['custom'][$child->id] = $custom_values[$child->id] ?? $next_order++;
But I can't find information in the PHP documentation about this change. Are changes like this non breaking and what is the ??
doing?