mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
393 B
393 B
ImpureByReferenceAssignment
Emitted when assigning a passed-by-reference variable inside a function or method marked as mutation-free.
<?php
/**
* @psalm-pure
*/
function foo(string &$a): string {
$a = "B";
return $a;
}
How to fix
Just remove the mutating assignment:
<?php
/**
* @psalm-pure
*/
function foo(string &$a): string {
return $a;
}