Appearance
The null coalesce operator can be used to conditionally evaluate an expression using the ?? operator, followed by the expression to evaluate if the value is null.
??
$foo = $bar ?? $baz;