Skip to content

MIR1700

ImpurePropertyAssignment

A function marked @pure assigns to a property.

<?php
/** @pure */ function f(C $o){ $o->n = 1; }

Remove the side effect, or drop the @pure annotation.