1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-02 17:52:45 +01:00
psalm/docs/running_psalm/issues/ImpureMethodCall.md

25 lines
371 B
Markdown
Raw Normal View History

2020-03-19 17:32:49 +01:00
# ImpureMethodCall
Emitted when calling an impure method from a function or method marked as pure.
```php
class A {
public int $a = 5;
public function foo() : void {
$this->a++;
}
}
/** @psalm-pure */
function filterOdd(int $i, A $a) : ?int {
$a->foo();
if ($i % 2 === 0 || $a->a === 2) {
return $i;
}
return null;
}
```