UnconditionalIfStatementSniff.php
Detects unconditional if- and elseif-statements.
This rule is based on the PMD rule catalogue. The Unconditional If Statement sniff detects statement conditions that are only set to one of the constant values true or false
class Foo
{
public function close()
{
if (true)
{
// ...
}
}
}