Skip to content

MIR1506

UnsupportedReferenceUsage

A PHP reference assignment is used in a form mir cannot model precisely (e.g. $b = &$arr[$x]).

<?php
$b = &$arr[$x]; // UnsupportedReferenceUsage

Avoid the reference, or restructure to a plain assignment.