mirror of
https://github.com/danog/psalm.git
synced 2024-12-02 17:52:45 +01:00
25 lines
371 B
Markdown
25 lines
371 B
Markdown
|
# 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;
|
||
|
}
|
||
|
```
|