phpsa icon indicating copy to clipboard operation
phpsa copied to clipboard

Implement Closure support

Open ovr opened this issue 8 years ago • 0 comments

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

    return $a();
}

ovr avatar May 26 '16 12:05 ovr