mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
240 B
240 B
ImpurePropertyFetch
Emitted when fetching a property value inside a function or method marked as pure.
<?php
class A {
public int $a = 5;
}
/** @psalm-pure */
function foo(int $i, A $a) : int {
return $i + $a->a;
}