Add `||=` and `&&=` operators accompanying the `??=` operator: ```php $a ||= $b; // equivalent of $a || ($a= $b); $a &&= $b; // equivalent of $a && ($a= $b); $a ??= $b; // equivalent of $a ?? ($a= $b); - EXISTS in PHP! ``` https://github.com/tc39/proposal-logical-assignment https://github.com/dotnet/csharplang/issues/1718