mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 12:55:26 +01:00
16 lines
246 B
Markdown
16 lines
246 B
Markdown
# ImpureByReferenceAssignment
|
|
|
|
Emitted when assigning a passed-by-reference variable inside a function or method marked as mutation-free.
|
|
|
|
```php
|
|
<?php
|
|
|
|
/**
|
|
* @psalm-pure
|
|
*/
|
|
function foo(string &$a): string {
|
|
$a = "B";
|
|
return $a;
|
|
}
|
|
```
|