123456789101112131415161718192021222324252627282930313233 |
- ===================================
- Rule ``ternary_to_null_coalescing``
- ===================================
- Use ``null`` coalescing operator ``??`` where possible. Requires PHP >= 7.0.
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -$sample = isset($a) ? $a : $b;
- +$sample = $a ?? $b;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PHP70Migration <./../../ruleSets/PHP70Migration.rst>`_
- - `@PHP71Migration <./../../ruleSets/PHP71Migration.rst>`_
- - `@PHP73Migration <./../../ruleSets/PHP73Migration.rst>`_
- - `@PHP74Migration <./../../ruleSets/PHP74Migration.rst>`_
- - `@PHP80Migration <./../../ruleSets/PHP80Migration.rst>`_
- - `@PHP81Migration <./../../ruleSets/PHP81Migration.rst>`_
- - `@PHP82Migration <./../../ruleSets/PHP82Migration.rst>`_
|