MIR1506
UnsupportedReferenceUsage
A PHP reference assignment is used in a form mir cannot model precisely (e.g. $b = &$arr[$x]).
Example
Section titled “Example”<?php$b = &$arr[$x]; // UnsupportedReferenceUsageHow to fix
Section titled “How to fix”Avoid the reference, or restructure to a plain assignment.