New check : unnecessary conditionals
Brought to you by:
hkodungallur,
tchule
Originally created by: tch...@hotmail.com
Originally owned by: tch...@hotmail.com
Check for unnecessary conditionals.
Exemple 1 :
if(true) {
// do something
}
Exemple 2 :
if($a) {
// do something
}
Where $a il always true.
Exemple 3 :
if($a == $b) {
return true;
} else {
return false;
}
Could be simplified to return ($a == $b)