Example: ```php <?php $foo = bar() ?? $baz ?? $qux ?? $quux; ``` Would become: ```php <?php $foo = bar() ?? $baz ?? $qux ?? $quux; ```