phpsa icon indicating copy to clipboard operation
phpsa copied to clipboard

Implement ref value changing

Open ovr opened this issue 9 years ago • 1 comments

Example to review

class Test
{
    /**
     * @return bool
     */
    public function returnTrue()
    {
        $a = 5;
        $b = &$a;
        $a = 0;

        return 1 / $b;
    }
}

ovr avatar May 17 '16 10:05 ovr

  • [ ] Add tests

ovr avatar May 17 '16 22:05 ovr