phpsa
phpsa copied to clipboard
Implement ref value changing
Example to review
class Test
{
/**
* @return bool
*/
public function returnTrue()
{
$a = 5;
$b = &$a;
$a = 0;
return 1 / $b;
}
}
- [ ] Add tests