Menu
← Back to all error identifiers
Error Identifiers: logicalOr.*
There are 9 error identifiers in the logicalOr.* group:
-
Result of the or expression is always false.
-
Result of the or expression is always true.
-
Left side of or is always false, making it redundant.
-
Left side of or is always true, so the right side is never evaluated.
-
logicalOr.leftNotBoolean phpstan-strict-rulesLeft side of or is not a boolean value.
-
Result of or is discarded due to operator precedence.
-
Right side of or is always false, making it redundant.
-
Right side of or is always true, making the condition always true.
-
logicalOr.rightNotBoolean phpstan-strict-rulesRight side of or is not a boolean value.