Fork me on GitHub
a Sensio Labs Product

BoY42 (v3.15.1) edition

Rule assign_null_coalescing_to_coalesce_equal

Use the null coalescing assignment operator ??= where possible.

Examples

Example #1

--- Original
+++ New
 <?php
-$foo = $foo ?? 1;
+$foo ??= 1;

Rule sets

The rule is part of the following rule sets:

@PHP74Migration

Using the @PHP74Migration rule set will enable the assign_null_coalescing_to_coalesce_equal rule.

@PHP80Migration

Using the @PHP80Migration rule set will enable the assign_null_coalescing_to_coalesce_equal rule.

@PHP81Migration

Using the @PHP81Migration rule set will enable the assign_null_coalescing_to_coalesce_equal rule.

@PHP82Migration

Using the @PHP82Migration rule set will enable the assign_null_coalescing_to_coalesce_equal rule.

The logo is © 2010-2022 Sensio Labs