Description

Category: Bug

Function does not return a value, but its return value is used by a caller. This may lead to unexpected problems.

Example

function foo()
{
    ...
    return;
}

$a = foo();