RequireExplicitBooleanOperatorPrecedenceSniff.php
Forbid mixing different binary boolean operators within a single expression without making precedence clear using parentheses.
$one = false;
$two = false;
$three = true;
$result = $one && $two || $three;
$result3 = $one && !$two xor $three;
Sister-sniff to the Squiz.ControlStructures.InlineIfDeclaration
and
Squiz.Formatting.OperatorBracket.MissingBrackets
sniffs.