mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
378 B
378 B
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;
}