PhpStorm 2024.1 Help

Code Inspection: Condition inside logical expression checked by subsequent condition

Reports the conditions inside logical binary expressions that are covered by subsequent conditions and are therefore redundant.

In the following example, the $var > 0 condition is effectively superseded by the subsequent $var > 1 condition and is redundant. After the quick-fix is applied, the redundant condition is removed.

if ($var > 0 && $var > 1) { echo $msg; }
if ($var > 1) { echo $msg; }

Suppress an inspection in the editor

  1. Place the caret at the highlighted line and press Alt+Enter or click the Intention action icon.

  2. Click the arrow next to the inspection you want to suppress and select the necessary suppress action.

Last modified: 11 February 2024