phpsa icon indicating copy to clipboard operation
phpsa copied to clipboard

Implement check for "uneeded if use 1 return"

Open ovr opened this issue 10 years ago • 0 comments

function test() {
    if ($a == 1) {
        return true;
    }

    return false;
}

Need to be

function test() {
     return ($a == 1);
}

ovr avatar Nov 09 '15 12:11 ovr