phpsa
phpsa copied to clipboard
Implement check for "uneeded if use 1 return"
function test() {
if ($a == 1) {
return true;
}
return false;
}
Need to be
function test() {
return ($a == 1);
}