123456789101112131415161718192021222324252627282930313233343536373839 |
- =================================================
- Rule ``assign_null_coalescing_to_coalesce_equal``
- =================================================
- Use the null coalescing assignment operator ``??=`` where possible.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -$foo = $foo ?? 1;
- +$foo ??= 1;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PHP74Migration <./../../ruleSets/PHP74Migration.rst>`_
- - `@PHP80Migration <./../../ruleSets/PHP80Migration.rst>`_
- - `@PHP81Migration <./../../ruleSets/PHP81Migration.rst>`_
- - `@PHP82Migration <./../../ruleSets/PHP82Migration.rst>`_
- - `@PHP83Migration <./../../ruleSets/PHP83Migration.rst>`_
- - `@PHP84Migration <./../../ruleSets/PHP84Migration.rst>`_
- References
- ----------
- - Fixer class: `PhpCsFixer\\Fixer\\Operator\\AssignNullCoalescingToCoalesceEqualFixer <./../../../src/Fixer/Operator/AssignNullCoalescingToCoalesceEqualFixer.php>`_
- - Test class: `PhpCsFixer\\Tests\\Fixer\\Operator\\AssignNullCoalescingToCoalesceEqualFixerTest <./../../../tests/Fixer/Operator/AssignNullCoalescingToCoalesceEqualFixerTest.php>`_
- The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.
|